small fix timer manager
This commit is contained in:
parent
b547f1854c
commit
9a4a2599e7
@ -43,7 +43,7 @@ class TimerManager {
|
|||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function registerTimerListening(TimerListener $listener, $method, $time, $oneTime = false) {
|
public function registerTimerListening(TimerListener $listener, $method, $time, $oneTime = false) {
|
||||||
if (!method_exists($listener, $method)) {
|
if (!method_exists($listener, $method) && !is_callable($method)) {
|
||||||
trigger_error("Given listener (" . get_class($listener) . ") can't handle timer (no method '{$method}')!");
|
trigger_error("Given listener (" . get_class($listener) . ") can't handle timer (no method '{$method}')!");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -101,8 +101,12 @@ class TimerManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Call the User func (at the end to avoid endless loops)
|
//Call the User func (at the end to avoid endless loops)
|
||||||
|
if (is_callable($listening->method)) {
|
||||||
|
call_user_func($listening->method, $time);
|
||||||
|
} else {
|
||||||
call_user_func(array($listening->listener, $listening->method), $time);
|
call_user_func(array($listening->listener, $listening->method), $time);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user