LLMS_Lesson::update( array $data )
Update object data
Contents
Parameters Parameters
- $data
-
(array) (Required) Data to update as key=>val.
Return Return
(array)
Source Source
File: includes/models/model.llms.lesson.php
public function update( $data ) {
$updated_values = array();
foreach ( $data as $key => $value ) {
$method = 'set_' . $key;
if ( method_exists( $this, $method ) ) {
$updated_value = $this->$method( $value );
$updated_values[ $key ] = $updated_value;
}
}
return $updated_values;
}
Expand full source code Collapse full source code View on GitHub