Created
May 16, 2013 15:03
-
-
Save biswarupadhikari/5592381 to your computer and use it in GitHub Desktop.
Joomla : Frontend pagination pass variable values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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