46 lines
763 B
PHP
46 lines
763 B
PHP
<?php
|
|
/**
|
|
* I'am UI interface
|
|
*
|
|
* @package Cherry_Framework
|
|
* @subpackage Class
|
|
* @author Cherry Team <cherryframework@gmail.com>
|
|
* @copyright Copyright (c) 2012 - 2017, Cherry Team
|
|
* @link http://www.cherryframework.com/
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.en.html
|
|
*/
|
|
|
|
/**
|
|
* UI element interface
|
|
*/
|
|
|
|
interface I_UI {
|
|
|
|
/**
|
|
* Enqueue javascript and stylesheet to UI element.
|
|
*/
|
|
public static function enqueue_assets();
|
|
|
|
/**
|
|
* Render UI element.
|
|
*
|
|
* @return string.
|
|
*/
|
|
public function render();
|
|
|
|
/**
|
|
* Get control name
|
|
*
|
|
* @return string control name.
|
|
*/
|
|
public function get_name();
|
|
|
|
/**
|
|
* Set control name
|
|
*
|
|
* @param [type] $name new control name.
|
|
*/
|
|
public function set_name( $name );
|
|
|
|
}
|