1 | <?php |
||
8 | class EventType |
||
9 | { |
||
10 | const ANIMATION_FINISH = 'animationfinish'; |
||
11 | const CLICK = 'click'; |
||
12 | const COLLAPSE = 'collapse'; |
||
13 | const ERROR = 'error'; |
||
14 | const ON_MOUSE_OUT = 'onmouseout'; |
||
15 | const ON_MOUSE_OVER = 'onmouseover'; |
||
16 | const PAGE = 'page'; |
||
17 | const RANGE_CHANGE = 'rangechange'; |
||
18 | const READY = 'ready'; |
||
19 | const REGION_CLICK = 'regionClick'; |
||
20 | const ROLLUP = 'rollup'; |
||
21 | const SELECT = 'select'; |
||
22 | const SORT = 'sort'; |
||
23 | |||
24 | /** |
||
25 | * @return string[] |
||
26 | */ |
||
27 | 3 | public static function getAllEventTypes() |
|
45 | } |
||
46 |