コード例 #1
0
ファイル: extravalue.php プロジェクト: JozefAB/qk
 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
ファイル: file.php プロジェクト: JozefAB/qk
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $model = $this->getModel('file');
     $folder = $model->getFolder();
     if ($folder) {
         $append .= '&folder=' . $folder;
     }
     return $append;
 }
コード例 #3
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();
     $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
ファイル: visdata.php プロジェクト: shamusdougan/GDMCWebsite
 /**
  * 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
ファイル: category.php プロジェクト: GitIPFire/Homeworks
 /**
  * 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
ファイル: area.php プロジェクト: steevo/mapfrance
 /**
  * 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
ファイル: table.php プロジェクト: joshjim27/jobsglobal
 /**
  * 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
ファイル: visfield.php プロジェクト: shamusdougan/GDMCWebsite
 /**
  * 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
ファイル: region.php プロジェクト: BetterBetterBetter/B3App
 /**
  * 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
ファイル: form.php プロジェクト: grlf/eyedock
 /**
  * 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
ファイル: field.php プロジェクト: beingsane/DPFields
 protected function getRedirectToListAppend()
 {
     $append = parent::getRedirectToListAppend();
     $append .= '&context=' . $this->internalContext;
     return $append;
 }