• File: interface.php
  • Full Path: /home/dealkatnwc/www/wp-content/plugins/types/application/models/setting/interface.php
  • Date Modified: 02/11/2019 2:36 PM
  • File size: 317 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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 );
}