]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
you can add a daemon to getvaliddaemons
authorEvan Prodromou <evan@status.net>
Mon, 21 Sep 2009 18:29:43 +0000 (14:29 -0400)
committerEvan Prodromou <evan@status.net>
Mon, 21 Sep 2009 18:29:43 +0000 (14:29 -0400)
EVENTS.txt
scripts/getvaliddaemons.php

index 56f91f87a44dc1146655bddc0b594cce6038c1bb..d3b58ffb01fbe82fcb27d786576f431f857a94bf 100644 (file)
@@ -264,4 +264,7 @@ EndEnqueueNotice: after adding a notice to the queues
 
 UnqueueHandleNotice: Handle a notice when no queue manager is available
 - $notice: the notice to handle
-- $queue: the "queue" that is being executed
\ No newline at end of file
+- $queue: the "queue" that is being executed
+
+GetValidDaemons: Just before determining which daemons to run
+- &$daemons: modifiable list of daemon scripts to run, filenames relative to scripts/
index 8f48e8e6f04019a105771e6a2232345af4338d36..92edacfd3c1e6a9a698fa087b958ce95dcd6b9ad 100755 (executable)
@@ -35,20 +35,31 @@ ENDOFHELP;
 
 require_once INSTALLDIR.'/scripts/commandline.inc';
 
+$daemons = array();
+
 if(common_config('xmpp','enabled')) {
-    echo "xmppdaemon.php jabberqueuehandler.php publicqueuehandler.php ";
-    echo "xmppconfirmhandler.php ";
+    $daemons[] = 'xmppdaemon.php';
+    $daemons[] = 'jabberqueuehandler.php';
+    $daemons[] = 'publicqueuehandler.php';
+    $daemons[] = 'xmppconfirmhandler.php';
 }
 if(common_config('twitterbridge','enabled')) {
-    echo "twitterstatusfetcher.php ";
+    $daemons[] = 'twitterstatusfetcher.php';
 }
-echo "ombqueuehandler.php ";
+$daemons[] = 'ombqueuehandler.php';
 if (common_config('twitter', 'enabled')) {
-    echo "twitterqueuehandler.php ";
-    echo "synctwitterfriends.php ";
+    $daemons[] = 'twitterqueuehandler.php';
+    $daemons[] = 'synctwitterfriends.php';
 }
-echo "facebookqueuehandler.php ";
-echo "pingqueuehandler.php ";
+$daemons[] = 'facebookqueuehandler.php';
+$daemons[] = 'pingqueuehandler.php';
 if (common_config('sms', 'enabled')) {
-    echo "smsqueuehandler.php ";
+    $daemons[] = 'smsqueuehandler.php';
+}
+
+if (Event::handle('GetValidDaemons', array(&$daemons))) {
+    foreach ($daemons as $daemon) {
+        print $daemon . ' ';
+    }
+    print "\n";
 }