예제 #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;
 }
예제 #2
0
파일: shsef.php 프로젝트: sangkasi/joomla
 function _processParseRules(&$uri)
 {
     $vars = parent::_processParseRules($uri);
     return $vars;
 }