Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
types
/
application
/
models
/
setting
:
interface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Interface Types_Setting_Interface * * @since 2.1 */ interface Types_Setting_Interface { public function __construct( $id ); public function get_id(); public function add_option( Types_Setting_Option_Interface $option ); public function get_options(); public function get_value( $option_id ); }