1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-07 07:47:59 +01:00
php-e107/e107_plugins/rss_menu/rss_template.php

32 lines
690 B
PHP
Raw Normal View History

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%"); }
// Rss listing
if(!isset($RSS_LIST_HEADER))
{
$RSS_LIST_HEADER = "<table class='table table-striped table-bordered fborder' style='".USER_WIDTH."'>
2006-12-02 04:36:16 +00:00
<tr>
<th class='fcaption' style='width:70%'> </th>
<th class='fcaption' style='text-align:right'>".RSS_PLUGIN_LAN_6."</th>
2006-12-02 04:36:16 +00:00
</tr>";
}
if(!isset($RSS_LIST_TABLE))
{
2006-12-02 04:36:16 +00:00
$RSS_LIST_TABLE = "
<tr>
<td class='forumheader3'>{RSS_FEED}<br />
<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>";
}
if(!isset($RSS_LIST_FOOTER))
{
2006-12-02 04:36:16 +00:00
$RSS_LIST_FOOTER = "</table>";
}
?>