[pLog-svn] r5616 - plog/branches/lifetype-1.2/class/net

oscar at devel.lifetype.net oscar at devel.lifetype.net
Thu Jul 5 17:01:42 EDT 2007


Author: oscar
Date: 2007-07-05 17:01:42 -0400 (Thu, 05 Jul 2007)
New Revision: 5616

Modified:
   plog/branches/lifetype-1.2/class/net/baserequestgenerator.class.php
Log:
Somehow this method had not been declared in the base class.

Modified: plog/branches/lifetype-1.2/class/net/baserequestgenerator.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/net/baserequestgenerator.class.php	2007-07-05 09:43:41 UTC (rev 5615)
+++ plog/branches/lifetype-1.2/class/net/baserequestgenerator.class.php	2007-07-05 21:01:42 UTC (rev 5616)
@@ -319,6 +319,22 @@
         }
 
         /**
+         * Returns the url for the rss feed of a category
+         *
+         * @param category The ArticleCategory object with information about the category
+         * whose RSS feed we'd like to generate
+         * @þaram profile The profile we'd like to generate: RSS 0.90, RSS 1.0, RSS 2.0
+         * or XML.
+         * @param blogInfo A BlogInfo object containing information about the blog.
+         * @return The url pointing to the rss feed of the journal.
+         * @see BlogInfo
+         */
+        function categoryRssLink( $category, $profile = "", $blogInfo = null )
+        {
+	        	throw( new Exception( "This function must be implemented by child classes." ));
+	    }	
+
+        /**
          * Returns the link of a category. Must be implemented by child classes to generate a valid URL.
          * This method has been deprecated as of pLog 1.0 so please use the method BaseRequestGenerator::categoryLink()
          * which takes an ArticleCategory object instead of an Article object since this method does not support



More information about the pLog-svn mailing list