Your IP : 216.73.216.95


Current Path : /var/www/ooareogundevinitiative/wp-content/plugins/brizy/editor/forms/
Upload File :
Current File : /var/www/ooareogundevinitiative/wp-content/plugins/brizy/editor/forms/folder.php

<?php


class Brizy_Editor_Forms_Folder extends Brizy_Admin_Serializable {


	use Brizy_Editor_Forms_DynamicPropsAware;

	/**
	 * Brizy_Editor_Forms_Folder constructor.
	 *
	 * @param \BrizyForms\Model\Folder|null $folder
	 */
	public function __construct( \BrizyForms\Model\Field $folder = null ) {
		$this->data = array();
		if ( $folder ) {
			$this->data = array( 'id' => $folder->getId(), 'name' => $folder->getName() );
		}
	}

	/**
	 * @return string
	 */
	public function serialize() {
		return serialize( $this->jsonSerialize() );
	}

	public function unserialize( $serialized ) {
		$this->data = unserialize( $serialized );
	}

	public function jsonSerialize() {
		return $this->data;
	}

	public function convertToOptionValue() {
		return $this->data;
	}

	static public function createFromSerializedData( $data ) {
		$instance = new self();

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

		return $instance;
	}

	public static function createFromJson( $json_obj ) {

		if ( ! isset( $json_obj ) ) {
			throw new Exception( 'Bad Request', 400 );
		}

		if ( is_object( $json_obj ) ) {
			return self::createFromSerializedData( get_object_vars( $json_obj ) );
		}

		return new self();
	}

}