EModal_Model_Theme::save()


Description Description


Source Source

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

	public function save() {
		if ( ! $this->id ) {
			$this->created = date( 'Y-m-d H:i:s' );
		}
		$this->modified = date( 'Y-m-d H:i:s' );
		parent::save();
		$this->meta->theme_id = $this->id;
		$this->meta->save();
	}


Top ↑

User Contributed Notes User Contributed Notes

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