2006-12-02 04:36:16 +00:00
|
|
|
<?php
|
2012-11-27 19:56:35 -08:00
|
|
|
|
2006-12-02 04:36:16 +00:00
|
|
|
if(!defined("USER_WIDTH")){ define("USER_WIDTH","width:100%"); }
|
|
|
|
|
2009-09-18 19:05:50 +00:00
|
|
|
// Rss listing
|
|
|
|
if(!isset($RSS_LIST_HEADER))
|
|
|
|
{
|
2015-04-04 12:54:34 -07:00
|
|
|
$RSS_LIST_HEADER = "<table class='table table-striped table-bordered fborder' style='".USER_WIDTH."'>
|
2006-12-02 04:36:16 +00:00
|
|
|
<tr>
|
2015-04-04 12:54:34 -07:00
|
|
|
<th class='fcaption' style='width:70%'> </th>
|
2015-04-03 18:39:56 -07:00
|
|
|
<th class='fcaption' style='text-align:right'>".RSS_PLUGIN_LAN_6."</th>
|
2006-12-02 04:36:16 +00:00
|
|
|
</tr>";
|
|
|
|
}
|
2009-09-18 19:05:50 +00:00
|
|
|
if(!isset($RSS_LIST_TABLE))
|
|
|
|
{
|
2006-12-02 04:36:16 +00:00
|
|
|
$RSS_LIST_TABLE = "
|
|
|
|
<tr>
|
|
|
|
<td class='forumheader3'>{RSS_FEED}<br />
|
2015-04-04 12:54:34 -07:00
|
|
|
<span class='smalltext' ><small>{RSS_TEXT}</small></span>
|
2006-12-02 04:36:16 +00:00
|
|
|
</td>
|
|
|
|
<td class='forumheader3' style='text-align:right'>
|
|
|
|
{RSS_TYPES}
|
|
|
|
</td>
|
|
|
|
</tr>";
|
|
|
|
}
|
2009-09-18 19:05:50 +00:00
|
|
|
if(!isset($RSS_LIST_FOOTER))
|
|
|
|
{
|
2006-12-02 04:36:16 +00:00
|
|
|
$RSS_LIST_FOOTER = "</table>";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-18 19:05:50 +00:00
|
|
|
?>
|