aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Cronhooks.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Daemon/Cronhooks.php')
-rw-r--r--Zotlabs/Daemon/Cronhooks.php17
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;
+ }
+}