| 1 | <?php |
||
| 5 | class TimerDataProvider extends AbstractDataProvider |
||
| 6 | { |
||
| 7 | |||
| 8 | protected $time = 0; |
||
| 9 | |||
| 10 | public function onPreLoop() |
||
| 11 | { |
||
| 12 | $this->dispatch(__FUNCTION__, []); |
||
| 13 | |||
| 14 | if ($this->time != time()) { |
||
| 15 | $this->dispatch("onEverySecond", []); |
||
| 16 | $this->time = time(); |
||
| 17 | } |
||
| 18 | } |
||
| 19 | |||
| 20 | |||
| 21 | public function onPostLoop() |
||
| 25 | |||
| 26 | } |
||
| 27 | |||
| 28 |