summaryrefslogtreecommitdiff
path: root/plugins/data.rss.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2005-06-28 07:45:52 +0000
committerChristian Fowler <spider@viovio.com>2005-06-28 07:45:52 +0000
commit6d86140af4cca051399ab3187180744628eff675 (patch)
tree903610bd9d2db37048e548c1e4cd3f168257d2db /plugins/data.rss.php
parent442f7afb7bb24f3da54e42998d2b3d612eca1510 (diff)
downloadliberty-6d86140af4cca051399ab3187180744628eff675.tar.gz
liberty-6d86140af4cca051399ab3187180744628eff675.tar.bz2
liberty-6d86140af4cca051399ab3187180744628eff675.zip
Merge recent changes from R1 into HEAD
Diffstat (limited to 'plugins/data.rss.php')
-rw-r--r--plugins/data.rss.php25
1 files changed, 24 insertions, 1 deletions
diff --git a/plugins/data.rss.php b/plugins/data.rss.php
index 11368a5..1ab7d1c 100644
--- a/plugins/data.rss.php
+++ b/plugins/data.rss.php
@@ -1,4 +1,27 @@
<?php
+/**
+ * @version $Revision: 1.2 $
+ * @package Liberty
+ * @subpackage plugins_data
+ */
+// +----------------------------------------------------------------------+
+// | Copyright (c) 2004, bitweaver.org
+// +----------------------------------------------------------------------+
+// | All Rights Reserved. See copyright.txt for details and a complete list of authors.
+// | Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
+// |
+// | For comments, please use phpdocu.sourceforge.net documentation standards!!!
+// | -> see http://phpdocu.sourceforge.net/
+// +----------------------------------------------------------------------+
+// | Author (TikiWiki): Oliver Hertel <ohertel@users.sourceforge.net>
+// | Reworked for Bitweaver (& Undoubtedly Screwed-Up)
+// | by: StarRider <starrrider@users.sourceforge.net>
+// +----------------------------------------------------------------------+
+// $Id: data.rss.php,v 1.2 2005/06/28 07:45:48 spiderr Exp $
+
+/**
+ * definitions
+ */
global $gLibertySystem;
define( 'PLUGIN_GUID_RSS', 'datarss' );
@@ -9,9 +32,9 @@ $pluginParams = array ( 'tag' => 'RSS',
'requires_pair' => FALSE,
'load_function' => 'rss_parse_data',
'title' => 'RSS Feed',
+ 'help_page' => 'DataPluginRSS',
'description' => tra("Display RSS Feeds"),
'help_function' => 'rss_extended_help',
- 'tp_helppage' => "http://www.bitweaver.org/wiki/index.php", // Update this URL when a page on TP.O exists
'syntax' => "{RSS id= max= }",
'plugin_type' => DATA_PLUGIN
);