5b2474238
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php /** @file */ namespace Zotlabs\Daemon; class Cronhooks { static public function run($argc,$argv){ logger('cronhooks: start'); $d = datetime_convert(); call_hooks('cron', $d); return; } }