Your IP : 216.73.216.240


Current Path : /home/juvelize/www/components/com_phocagallery/views/category/tmpl/
Upload File :
Current File : /home/juvelize/www/components/com_phocagallery/views/category/tmpl/default_pagination.php

<?php defined('_JEXEC') or die('Restricted access'); 
if ($this->params->get('show_ordering_images') || $this->params->get('show_pagination_limit_category') || $this->params->get('show_pagination_category')) {
	echo '<form action="'.htmlspecialchars($this->tmpl['action']).'" method="post" name="adminForm">'. "\n";

	if (count($this->items)) {
		echo '<div class="pagination pagination-centered">';
		if ($this->params->get('show_ordering_images')) {
			echo JText::_('COM_PHOCAGALLERY_ORDER_FRONT') .'&nbsp;'.$this->tmpl['ordering'];
		}
		if ($this->params->get('show_pagination_limit_category')) {
			echo JText::_('COM_PHOCAGALLERY_DISPLAY_NUM') .'&nbsp;'.$this->tmpl['pagination']->getLimitBox();
		}
		if ($this->params->get('show_pagination_category')) {
		
			echo '<div class="counter pull-right">'.$this->tmpl['pagination']->getPagesCounter().'</div>'
				.'<div class="pagination pagination-centered">'.$this->tmpl['pagination']->getPagesLinks().'</div>';
		}
		echo '</div>'. "\n";

	}
	echo '<input type="hidden" name="controller" value="category" />';
	echo JHtml::_( 'form.token' );
	echo '</form>';
	
	echo '<div class="ph-cb pg-cv-paginaton">&nbsp;</div>';
} else {
	echo '<div class="ph-cb pg-csv-paginaton">&nbsp;</div>';
}
?>