blob: 5747b6be0261e08133cc8b1f626c33158d9c3e26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
/**
* TJuiControlAdapter class file.
*
* @author Fabio Bas <ctrlaltca@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2013-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\JuiControls
*/
namespace Prado\Web\UI\JuiControls;
/**
* IJuiOptions interface
*
* IJuiOptions is the interface that must be implemented by controls using
* {@link TJuiControlOptions}.
*
* @author Fabio Bas <ctrlaltca@gmail.com>
* @package Prado\Web\UI\JuiControls
* @since 3.3
*/
interface IJuiOptions
{
public function getOptions();
public function getValidOptions();
public function getValidEvents();
}
|