blob: 62ff84f77a93d30fc67d7a0d205bec073daa3150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* TComponent, TPropertyValue classes
*
* @author Qiang Xue <qiang.xue@gmail.com>
*
* Global Events, intra-object events, Class behaviors, expanded behaviors
* @author Brad Anderson <javalizard@mac.com>
*
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado
*/
namespace Prado;
class TEventResults extends \Prado\TEnumerable {
const EVENT_RESULT_FEED_FORWARD=1;
const EVENT_RESULT_FILTER=2;
const EVENT_RESULT_ALL=4;
}
|