Пример #1
0
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $extra_id = JFactory::getApplication()->input->get('extra_id', 0, 'int');
     if ($extra_id) {
         $append .= '&extra_id=' . $extra_id;
     }
     return $append;
 }
Пример #2
0
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $model = $this->getModel('file');
     $folder = $model->getFolder();
     if ($folder) {
         $append .= '&folder=' . $folder;
     }
     return $append;
 }
 /**
  * Gets the URL arguments to append to a list redirect.
  *
  * @return  string  The arguments to append to the redirect URL.
  *
  * @since   12.2
  */
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $filter = (array) JFactory::getApplication()->getUserState(sprintf('%s.%s.filter', $this->option, $this->view_list), array());
     $field_id = (int) JArrayHelper::getValue($filter, 'field_id');
     if ($field_id) {
         $append .= '&field_id=' . $field_id;
     }
     return $append;
 }
Пример #4
0
 /**
  * Gets the URL arguments to append to a list redirect.
  *
  * @return  string  The arguments to append to the redirect URL.
  *
  * @since   11.1
  */
 protected function getRedirectToListAppend()
 {
     $fid = JFactory::getApplication()->input->getIntr('fid', 0);
     $append = '';
     // Setup redirect info.
     if ($fid != 0) {
         $append .= '&fid=' . $fid;
     }
     parent::getRedirectToListAppend();
     return $append;
 }
Пример #5
0
 /**
  * Gets the URL arguments to append to a list redirect.
  *
  * @return  string  The arguments to append to the redirect URL.
  *
  * @since   1.6
  */
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $append .= '&extension=' . $this->extension;
     return $append;
 }
Пример #6
0
 /**
  * Gets the URL arguments to append to a list redirect.
  *
  * @return  string  The arguments to append to the redirect URL.
  */
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     foreach ($this->allow_url_params as $param) {
         if (JRequest::getVar($param)) {
             $append .= "&{$param}=" . JRequest::getVar($param);
         }
     }
     return $append;
 }
Пример #7
0
 /**
  * Gets the URL arguments to append to a list redirect.
  *
  * @return    string    The arguments to append to the redirect URL.
  */
 protected function getRedirectToListAppend()
 {
     $app = JFactory::getApplication();
     $append = parent::getRedirectToListAppend();
     $form = $app->input->getVar('jform');
     $append .= '&map=' . $form['map'];
     return $append;
 }
Пример #8
0
 /**
  * Gets the URL arguments to append to a list redirect.
  *
  * @return  string  The arguments to append to the redirect URL.
  *
  * @since   12.2
  */
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $component = $this->input->get('component', 0, 'int');
     if ($component) {
         $append .= "&id=" . $component;
     }
     return $append;
 }
Пример #9
0
 /**
  * Gets the URL arguments to append to a list redirect.
  *
  * @return  string  The arguments to append to the redirect URL.
  *
  * @since   11.1
  */
 protected function getRedirectToListAppend()
 {
     $fid = $fid = $this->input->getInt('fid', 0);
     $append = '';
     // Setup redirect info.
     if ($fid != 0) {
         $append .= '&fid=' . $fid;
     }
     parent::getRedirectToListAppend();
     return $append;
 }
Пример #10
0
 /**
  * Gets the URL arguments to append to a list redirect.
  *
  * @return  string  The arguments to append to the redirect URL.
  *
  * @since   1.6
  */
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $append .= '&client=' . $this->client;
     return $append;
 }
Пример #11
0
 /**
  * Gets the URL arguments to append to a list redirect.
  *
  * @return  string  The arguments to append to the redirect URL.
  */
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $return = $this->input->get('return');
     if ($return) {
         $append .= '&return=' . $return;
     }
     return $append;
 }
Пример #12
0
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $append .= '&context=' . $this->internalContext;
     return $append;
 }