blob: cb56f9b620d10e65ff39571c233b485bcb097fc5 (
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
/**
* Core interfaces essential for TApplication class.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado
*/
namespace Prado;
/**
* IActiveControl interface.
*
* Active controls must implement IActiveControl interface.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
* @package Prado
* @since 3.1
*/
interface IActiveControl
{
/**
* @return TBaseActiveControl Active control properties.
*/
public function getActiveControl();
}
|