mirror of
https://github.com/e107inc/e107.git
synced 2025-02-07 15:51:18 +01:00
32 lines
658 B
PHP
32 lines
658 B
PHP
<?php
|
|
|
|
if(!defined("USER_WIDTH")){ define("USER_WIDTH","width:100%"); }
|
|
|
|
// Rss listing
|
|
if(!isset($RSS_LIST_HEADER))
|
|
{
|
|
$RSS_LIST_HEADER = "<table class='fborder' style='".USER_WIDTH."'>
|
|
<tr>
|
|
<td class='fcaption' style='width:55%'>".RSS_LAN_ADMIN_4."</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>";
|
|
}
|
|
|
|
|
|
?>
|