summaryrefslogtreecommitdiff
path: root/modules/comment/helpers/comment_event.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-06-11 15:44:34 +0800
committer <unostar@danalan.info>2009-06-12 21:21:55 +0800
commit4bd82c11670cf9c75ed9f9a1da31e0873a46ed9d (patch)
tree3e78461c556c7837ddf561ca894cdd0b0d70a1f6 /modules/comment/helpers/comment_event.php
parentf578906d33234fea363bb7b893ffe23ae8c81db3 (diff)
Changed rss_theme::sidebar_blocks to fire the event "request_feed_links" to
allow modules to contribute rss feed links to the rss sidebar block. Ticket #388. Signed-off-by: <unostar@danalan.info>
Diffstat (limited to 'modules/comment/helpers/comment_event.php')
-rw-r--r--modules/comment/helpers/comment_event.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/comment/helpers/comment_event.php b/modules/comment/helpers/comment_event.php
index a3beb27a..6370e27d 100644
--- a/modules/comment/helpers/comment_event.php
+++ b/modules/comment/helpers/comment_event.php
@@ -21,4 +21,10 @@ class comment_event_Core {
static function item_before_delete($item) {
Database::instance()->delete("comments", array("item_id" => $item->id));
}
+
+ static function request_feed_links($event_data) {
+ $event_data->feeds[t("All new comments")] = url::site("rss/comments");
+ $event_data->feeds[sprintf(t("Comments on %s"), $event_data->item->title)] =
+ url::site("rss/comments/{$event_data->item->id}");
+ }
}