LLMS_Question_Choice::update( array $data = array() )

Update multiple data by key=>val pairs


Parameters Parameters

$data

(array) (Optional) array of data to set

Default value: array()


Top ↑

Return Return

(self)


Top ↑

Source Source

File: includes/models/model.llms.question.choice.php

	public function update( $data = array() ) {

		foreach ( $data as $key => $val ) {
			$this->set( $key, $val );
		}
		return $this;

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.16.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.