EModal_Model::serialized_values()


Description Description


Source Source

File: includes/importer/easy-modal-v2/model.php

	public function serialized_values() {
		$values = $this->_data;

		foreach ( $values as $key => $value ) {
			if ( $key != 'id' ) {
				$values[ $key ] = maybe_serialize( $this->$key );
			}
		}

		return $values;
	}


Top ↑

User Contributed Notes User Contributed Notes

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