| 1 | <?php |
||
| 13 | class FinderEvents |
||
| 14 | { |
||
| 15 | |||
| 16 | 19 | public static function afterCount($model) |
|
| 20 | |||
| 21 | 9 | public static function afterExists($model) |
|
| 25 | |||
| 26 | 58 | public static function afterFind($model) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Trigger before count event |
||
| 33 | * @return boolean |
||
| 34 | */ |
||
| 35 | 19 | public static function beforeCount($model) |
|
| 43 | |||
| 44 | /** |
||
| 45 | * Trigger before exists event |
||
| 46 | * @return boolean |
||
| 47 | */ |
||
| 48 | 9 | public static function beforeExists($model) |
|
| 56 | |||
| 57 | /** |
||
| 58 | * Trigger before find event |
||
| 59 | * @return boolean |
||
| 60 | */ |
||
| 61 | 60 | public static function beforeFind($model) |
|
| 69 | |||
| 70 | } |
||
| 71 |