Esempio n. 1
0
 /**
  * Process the parsed router variables based on custom defined rules
  *
  * @param   JUri  &$uri  The URI to parse
  *
  * @return  array  The array of processed URI variables
  *
  * @since   3.2
  */
 protected function processParseRules(&$uri)
 {
     // Process the attached parse rules
     $vars = parent::processParseRules($uri);
     // Process the pagination support
     if ($this->_mode == JROUTER_MODE_SEF) {
         if ($start = $uri->getVar('start')) {
             $uri->delVar('start');
             $vars['limitstart'] = $start;
         }
     }
     return $vars;
 }