summaryrefslogtreecommitdiff
path: root/plugins/RSSCloud/RSSCloudPlugin.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-12-08 21:04:26 +0000
committerZach Copley <zach@status.net>2010-01-05 23:19:13 -0800
commitff26b8d88b9e3d185afa83fd2b08c0d67cd4f78d (patch)
tree65e335970efa0657c3f4b68a8084652f00694eb3 /plugins/RSSCloud/RSSCloudPlugin.php
parentd091d061151749feddd3751f953f9bec48e382f2 (diff)
Add an RSSCloud queue handler daemon
Diffstat (limited to 'plugins/RSSCloud/RSSCloudPlugin.php')
-rw-r--r--plugins/RSSCloud/RSSCloudPlugin.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/RSSCloud/RSSCloudPlugin.php b/plugins/RSSCloud/RSSCloudPlugin.php
index b9187d86c..fcd468f55 100644
--- a/plugins/RSSCloud/RSSCloudPlugin.php
+++ b/plugins/RSSCloud/RSSCloudPlugin.php
@@ -205,5 +205,12 @@ class RSSCloudPlugin extends Plugin
return true;
}
+ function onGetValidDaemons($daemons)
+ {
+ array_push($daemons, INSTALLDIR .
+ '/plugins/RSSCloud/RSSCloudQueueHandler.php');
+ return true;
+ }
+
}