Your IP : 216.73.216.134


Current Path : /home/bijouxly/www/templates/themler2016ac/includes/
Upload File :
Current File : /home/bijouxly/www/templates/themler2016ac/includes/pagination_list_render_grid_4.php

<?php

function pagination_list_render_grid_4($list)
{
    if (is_string($list)) return $list;
	// Initialise variables.
	$lang = JFactory::getLanguage();
    ob_start();
?>
    <ul class=" bd-pagination-3 pagination">
    <?php if ($list['start']['active']) : ?>
        <li class=" bd-paginationitem-3">
        <?php echo preg_replace("/class=(\"|\').*?(\"|\')/", "", $list['start']['data']); ?>
        </li>
    <?php endif; ?>
    <?php if ($list['previous']['active']) : ?>
    <li class=" bd-paginationitem-3">
        <?php echo preg_replace("/class=(\"|\').*?(\"|\')/", "", $list['previous']['data']); ?>
    </li>
    <?php endif; ?>

	<?php foreach($list['pages'] as $page) : ?>
		<?php if (!$page['active']) : ?>
            <li class="active  bd-paginationitem-3">
        <?php else : ?>
    		<li class=" bd-paginationitem-3">
		<?php endif; ?>
    <?php echo preg_replace("/class=(\"|\').*?(\"|\')/", "", $page['data']); ?>
		</li>
 	<?php endforeach; ?>

	<?php if ($list['next']['active']) : ?>
        <li class=" bd-paginationitem-3">
            <?php echo preg_replace("/class=(\"|\').*?(\"|\')/", "", $list['next']['data']); ?>
		</li>
	<?php endif; ?>
    <?php if ($list['end']['active']) : ?>
        <li class=" bd-paginationitem-3">
            <?php echo preg_replace("/class=(\"|\').*?(\"|\')/", "", $list['end']['data']); ?>
		</li>
	<?php endif; ?>
</ul>
<?php
	return ob_get_clean();
}
?>