Skip to content

Instantly share code, notes, and snippets.

@biswarupadhikari
Created May 16, 2013 15:03
Embed
What would you like to do?
Joomla : Frontend pagination pass variable values
<?php
$listOrder=$this->escape($this->state->get('list.ordering'));
$orderDirn=$this->escape($this->state->get('list.direction'));
$app =JFactory::getApplication();
$router =$app->getRouter();
$router->setVar( 'filter_order',$listOrder);
$router->setVar( 'filter_order_Dir',$orderDirn);
$router->setVar( 'view','bookings');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment