Ejemplo n.º 1
0
 /**
  * Get the JRoute object for a redirect to list.
  *
  * @param   string  $append  An optional string to append to the route
  *
  * @return  JRoute  The JRoute object
  */
 protected function getRedirectToListRoute($append = '')
 {
     // Setup redirect info.
     if ($contentElement = JFactory::getApplication()->input->get('contentelement')) {
         $append = '&contentelement=' . $contentElement . $append;
     }
     return parent::getRedirectToListRoute($append);
 }