示例#1
0
 function display()
 {
     if (!JRequest::getCmd('view')) {
         JRequest::setVar('view', 'comment');
     }
     parent::display();
 }
示例#2
0
 function display($cachable = false, $urlparams = false)
 {
     if (!JRequest::get('view')) {
         $this->input->set('view', 'category');
     }
     parent::display($cachable, $urlparams);
 }
示例#3
0
 function display($cachable = false, $urlparams = false)
 {
     if (!JFactory::getApplication()->input->get('view')) {
         JRequest::setVar('view', 'comment');
     }
     parent::display($cachable, $urlparams);
 }
示例#4
0
 function display()
 {
     if (!JFactory::getApplication()->input->get('view')) {
         JRequest::setVar('view', 'comment');
     }
     parent::display();
 }
示例#5
0
 function display()
 {
     if (!JRequest::get('view')) {
         $this->input->set('view', 'category');
     }
     parent::display();
 }