class Rss10Action extends Action
{
# This will contain the details of each feed item's author and be used to generate SIOC data.
-
+
var $creators = array();
var $limit = DEFAULT_RSS_LIMIT;
-
+
/**
* Constructor
*
/**
* Do we need to write to the database?
- *
+ *
* @return boolean true
*/
-
+
function isReadonly()
{
return true;
/**
* Read arguments and initialize members
- *
+ *
* @param array $args Arguments from $_REQUEST
* @return boolean success
*/
-
+
function prepare($args)
{
$this->limit = (int) $this->trimmed('limit');
}
return true;
}
-
+
/**
* Handle a request
- *
+ *
* @param array $args Arguments from $_REQUEST
- *
+ *
* @return void
*/
-
+
function handle($args)
{
parent::handle($args);
/**
* Get the notices to output in this stream
- *
+ *
* @return array an array of Notice objects sorted in reverse chron
*/
-
+
function getNotices()
{
return array();
/**
* Get a description of the channel
- *
- * Returns an array with the following
- * @return array
+ *
+ * Returns an array with the following
+ * @return array
+ */
+
function get_channel()
{
return array('url' => '',