]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add the plugin daemon
authorEvan Prodromou <evan@status.net>
Mon, 21 Sep 2009 18:44:16 +0000 (14:44 -0400)
committerEvan Prodromou <evan@status.net>
Mon, 21 Sep 2009 18:44:16 +0000 (14:44 -0400)
scripts/getvaliddaemons.php

index 684799a0ee40e3421c0fe679cd3190d1aef25265..6dd01971296326e725f71ca5ae749011fd11d0d5 100755 (executable)
@@ -37,22 +37,27 @@ require_once INSTALLDIR.'/scripts/commandline.inc';
 
 $daemons = array();
 
+$daemons[] = INSTALLDIR.'/scripts/pluginqueuehandler.php';
+$daemons[] = INSTALLDIR.'/scripts/ombqueuehandler.php';
+$daemons[] = INSTALLDIR.'/scripts/facebookqueuehandler.php';
+$daemons[] = INSTALLDIR.'/scripts/pingqueuehandler.php';
+
 if(common_config('xmpp','enabled')) {
     $daemons[] = INSTALLDIR.'/scripts/xmppdaemon.php';
     $daemons[] = INSTALLDIR.'/scripts/jabberqueuehandler.php';
     $daemons[] = INSTALLDIR.'/scripts/publicqueuehandler.php';
     $daemons[] = INSTALLDIR.'/scripts/xmppconfirmhandler.php';
 }
+
 if(common_config('twitterbridge','enabled')) {
     $daemons[] = INSTALLDIR.'/scripts/twitterstatusfetcher.php';
 }
-$daemons[] = INSTALLDIR.'/scripts/ombqueuehandler.php';
+
 if (common_config('twitter', 'enabled')) {
     $daemons[] = INSTALLDIR.'/scripts/twitterqueuehandler.php';
     $daemons[] = INSTALLDIR.'/scripts/synctwitterfriends.php';
 }
-$daemons[] = INSTALLDIR.'/scripts/facebookqueuehandler.php';
-$daemons[] = INSTALLDIR.'/scripts/pingqueuehandler.php';
+
 if (common_config('sms', 'enabled')) {
     $daemons[] = INSTALLDIR.'/scripts/smsqueuehandler.php';
 }