%PDF-
%PDF-
Mini Shell
Mini Shell
<?php
/**
* @package Joomla.Plugin
* @subpackage Content.pagenavigation
*
* @copyright Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
$lang = JFactory::getLanguage(); ?>
<ul class="pager pagenav">
<?php if ($row->prev) :
$direction = $lang->isRtl() ? 'right' : 'left'; ?>
<li class="previous">
<a href="<?php echo $row->prev; ?>" rel="prev">
<?php echo '<span class="icon-chevron-' . $direction . '"></span> ' . $row->prev_label; ?>
</a>
</li>
<?php endif; ?>
<?php if ($row->next) :
$direction = $lang->isRtl() ? 'left' : 'right'; ?>
<li class="next">
<a href="<?php echo $row->next; ?>" rel="next">
<?php echo $row->next_label . ' <span class="icon-chevron-' . $direction . '"></span>'; ?>
</a>
</li>
<?php endif; ?>
</ul>
Zerion Mini Shell 1.0