| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/moke/components/com_myrssreader/views/rss/tmpl/ |
Upload File : |
<?php
/**
* @package My RSS Reader
* @copyright Copyright (C) 2010 FalsinSoft. All rights reserved.
* @license GNU/GPL
* @website http://falsinsoft.blogspot.com
* @email falsinsoft@gmail.com
*
*/
defined('_JEXEC') or die('Restricted access');
JHTML::_('behavior.tooltip');
JHTML::_('stylesheet', 'myrssreader.css', 'components/com_myrssreader/assets/');
$advertisement_counter = 0;
?>
<style type="text/css">
span.rss_title,
a.rss_title,
a.rss_title:link,
a.rss_title:visited
{
font-size: <?php echo $this->layout->feed_title_size; ?>px;
}
#rss_copyright
{
text-align: center !important;
font-size: 10px;
width: auto;
}
</style>
<?php
if($this->layout->show_pages_links == 0 || $this->layout->show_pages_links == 1)
{
echo '<div class="pagination">'.$this->pagination->getPagesLinks().'</div>';
}
if($this->layout->show_advertisement == 1)
{
if($this->layout->advertisement_position == 0 || $this->layout->advertisement_position == 2)
{
echo '<br><br><center>'.$this->adv_html_code_list[$advertisement_counter++].'</center><br><br>';
if($advertisement_counter >= count($this->adv_html_code_list)) $advertisement_counter = 0;
}
}
switch($this->layout->feeds_show_style)
{
default:
case 0:
echo $this->model->showBlogStyle($this->rss_feeds_list, $this->layout);
break;
case 1:
echo $this->model->showExpandCollapseStyle($this->rss_feeds_list, $this->layout);
break;
}
if($this->layout->show_advertisement == 1)
{
if($this->layout->advertisement_position == 1 || $this->layout->advertisement_position == 2)
{
echo '<br><br><center>'.$this->adv_html_code_list[$advertisement_counter++].'</center><br><br>';
if($advertisement_counter >= count($this->adv_html_code_list)) $advertisement_counter = 0;
}
}
if($this->layout->show_pages_links == 0 || $this->layout->show_pages_links == 2)
{
echo '<div class="pagination">'.$this->pagination->getPagesLinks().'</div>';
}
?>
<br>
<div id="rss_copyright">
Powered by <a href="http://falsinsoft.blogspot.com" target="_blank">My RSS Reader</a>
</div>