diff options
Diffstat (limited to 'Zotlabs/Daemon/Cronhooks.php')
-rw-r--r-- | Zotlabs/Daemon/Cronhooks.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Zotlabs/Daemon/Cronhooks.php b/Zotlabs/Daemon/Cronhooks.php new file mode 100644 index 000000000..df0a5442e --- /dev/null +++ b/Zotlabs/Daemon/Cronhooks.php @@ -0,0 +1,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; + } +} |