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

	 * @since    3.16.0
	 * @version  3.16.0
	 */
	public function update( $data = array() ) {

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


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.