diff options
| author | laetzer <laetzer@users.sourceforge.net> | 2007-04-30 05:04:29 +0000 |
|---|---|---|
| committer | laetzer <laetzer@users.sourceforge.net> | 2007-04-30 05:04:29 +0000 |
| commit | 42a28907d4a403e4b1c9e46c6b4a0748c8a47297 (patch) | |
| tree | cac7225ff6900f06aa79fd76448784861faad4fa /plugins/data.rss.php | |
| parent | 503d1a854690d002e1d8bd9047364da9cf808171 (diff) | |
| download | liberty-42a28907d4a403e4b1c9e46c6b4a0748c8a47297.tar.gz liberty-42a28907d4a403e4b1c9e46c6b4a0748c8a47297.tar.bz2 liberty-42a28907d4a403e4b1c9e46c6b4a0748c8a47297.zip | |
added help table
Diffstat (limited to 'plugins/data.rss.php')
| -rw-r--r-- | plugins/data.rss.php | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/plugins/data.rss.php b/plugins/data.rss.php index 084deba..e81ce44 100644 --- a/plugins/data.rss.php +++ b/plugins/data.rss.php @@ -1,6 +1,6 @@ <?php /** - * @version $Revision: 1.11 $ + * @version $Revision: 1.12 $ * @package liberty * @subpackage plugins_data */ @@ -17,7 +17,7 @@ // | Reworked for Bitweaver (& Undoubtedly Screwed-Up) // | by: StarRider <starrrider@users.sourceforge.net> // +----------------------------------------------------------------------+ -// $Id: data.rss.php,v 1.11 2007/04/05 17:00:56 squareing Exp $ +// $Id: data.rss.php,v 1.12 2007/04/30 05:04:29 laetzer Exp $ /** * definitions @@ -45,7 +45,26 @@ $gLibertySystem->registerPlugin( PLUGIN_GUID_DATARSS, $pluginParams ); $gLibertySystem->registerDataTag( $pluginParams['tag'], PLUGIN_GUID_DATARSS ); function rss_extended_help() { - return 'NO HELP WRITTEN FOR {RSS}'; + $help = + '<table class="data help">' + .'<tr>' + .'<th>' . tra( "Key" ) . '</th>' + .'<th>' . tra( "Type" ) . '</th>' + .'<th>' . tra( "Comments" ) . '</th>' + .'</tr>' + .'<tr class="odd">' + .'<td>id</td>' + .'<td>' . tra( "string") . '<br />' . tra("(mandatory)") . '</td>' + .'<td>' . tra( "ID of the RSS-feed to process.") . '</td>' + .'</tr>' + .'<tr class="even">' + .'<td>max</td>' + .'<td>' . tra( "integer") . '<br />' . tra("(optional)") . '</td>' + .'<td>' . tra( "Number of entries to be displayed from given RSS Feed, prefixed with publication date.") . '</td>' + .'</tr>' + .'</table>' + ; + return $help; } function rss_parse_data( $data, $params ) { |
