1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-07 15:51:18 +01:00
php-e107/e107_plugins/rss_menu/rss_template.php
2013-06-18 21:12:47 -07:00

32 lines
660 B
PHP

<?php
if(!defined("USER_WIDTH")){ define("USER_WIDTH","width:100%"); }
// Rss listing
if(!isset($RSS_LIST_HEADER))
{
$RSS_LIST_HEADER = "<table class='table table-striped fborder' style='".USER_WIDTH."'>
<tr>
<td class='fcaption' style='width:55%'> </td>
<td class='fcaption' style='text-align:right'>".RSS_PLUGIN_LAN_6."</td>
</tr>";
}
if(!isset($RSS_LIST_TABLE))
{
$RSS_LIST_TABLE = "
<tr>
<td class='forumheader3'>{RSS_FEED}<br />
<span class='smalltext' >{RSS_TEXT}</span>
</td>
<td class='forumheader3' style='text-align:right'>
{RSS_TYPES}
</td>
</tr>";
}
if(!isset($RSS_LIST_FOOTER))
{
$RSS_LIST_FOOTER = "</table>";
}
?>