From 879e81f0a1fc4477a8e563d45348330706b6da8a Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Mon, 15 Jun 2009 02:20:08 +0800 Subject: Rename: rss::get_feeds() -> rss::available_feeds() rss::process_feed() -> rss::feed_data() Signed-off-by: --- modules/rss/helpers/rss.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/rss/helpers/rss.php') diff --git a/modules/rss/helpers/rss.php b/modules/rss/helpers/rss.php index 3c278b49..cf42ec28 100644 --- a/modules/rss/helpers/rss.php +++ b/modules/rss/helpers/rss.php @@ -31,7 +31,7 @@ class rss_Core { /** * Get all available rss feeds */ - static function get_feeds($item, $sidebar_only=true) { + static function available_feeds($item, $sidebar_only=true) { $feeds = array(); foreach (module::active() as $module) { $class_name = "{$module->name}_rss"; @@ -48,7 +48,7 @@ class rss_Core { return $feeds; } - static function process_feed($feed, $offset, $limit, $id) { + static function feed_data($feed, $offset, $limit, $id) { foreach (module::active() as $module) { $class_name = "{$module->name}_rss"; if (method_exists($class_name, $feed)) { -- cgit v1.2.3