blob: 9cb22532f846e13af77f48b4cdfaa58b46ca3c69 (
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
30
31
32
|
<?php
/**
* TControl, TControlCollection, TEventParameter and INamingContainer class file
*
* @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\Web\UI
*/
namespace Prado\Web\UI;
/**
* IPostBackEventHandler interface
*
* If a control wants to respond to postback event, it must implement this interface.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado\Web\UI
* @since 3.0
*/
interface IPostBackEventHandler
{
/**
* Raises postback event.
* The implementation of this function should raise appropriate event(s) (e.g. OnClick, OnCommand)
* indicating the component is responsible for the postback event.
* @param string the parameter associated with the postback event
*/
public function raisePostBackEvent($param);
}
|