Esempio n. 1
0
 protected function _processParseRules(&$uri)
 {
     // Process the attached parse rules
     $vars = parent::_processParseRules($uri);
     // Process the pagination support
     if ($this->_mode == JROUTER_MODE_SEF) {
         $app = JFactory::getApplication();
         if ($start = $uri->getVar('start')) {
             $uri->delVar('start');
             $vars['limitstart'] = $start;
         }
     }
     return $vars;
 }
Esempio n. 2
0
 function _processParseRules(&$uri)
 {
     $vars = parent::_processParseRules($uri);
     return $vars;
 }