Example #1
0
 public function saveorder()
 {
     parent::saveorder();
     $extra_id = JFactory::getApplication()->input->get('extra_id', 0, 'int');
     $extra_id_url = !empty($extra_id) ? '&extra_id=' . $extra_id : '';
     $this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list . $extra_id_url, false));
 }
Example #2
0
File: terms.php Project: JozefAB/qk
 /**
  * Save the manual order inputs from the terms list page.
  *
  * @return	void
  * @since	1.6
  */
 public function saveorder()
 {
     JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
     // Get the arrays from the Request
     $order = JFactory::getApplication()->input->get('order', array(), 'array');
     $cids = JFactory::getApplication()->input->get('cid', array(), 'array');
     parent::saveorder();
 }
 function saveorder()
 {
     $cid = JRequest::getVar('cid', array(), '', 'array');
     JArrayHelper::toInteger($cid);
     for ($i = 0; $i < count($cid); $i++) {
         if (!igGeneralHelper::authorise('core.edit.state', $cid[$i])) {
             return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
         }
     }
     parent::saveorder();
 }
Example #4
0
 public function saveorder()
 {
     JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
     $app = JFactory::getApplication();
     $order = $app->input->post->get('order', null, 'array');
     $originalOrder = explode(',', $app->input->post->get('original_order_values', null, 'string'));
     if (!($order === $originalOrder)) {
         parent::saveorder();
     } else {
         $this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false));
         return true;
     }
 }
 /**
  * Save the manual order inputs from the categories list page.
  *
  * @return	void
  * @since	1.6
  */
 public function saveorder()
 {
     JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
     // Get the arrays from the Request
     $order = JRequest::getVar('order', null, 'post', 'array');
     $originalOrder = explode(',', JRequest::getString('original_order_values'));
     // Make sure something has changed
     if (!($order === $originalOrder)) {
         parent::saveorder();
     } else {
         // Nothing to reorder
         $this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false));
         return true;
     }
 }
Example #6
0
 /**
  * Save the manual order inputs from the menu items list view
  * 
  * @return      void
  * 
  * @see         JControllerAdmin::saveorder()
  * @deprecated  4.0
  */
 public function saveorder()
 {
     JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
     JLog::add('MenusControllerItems::saveorder() is deprecated. Function will be removed in 4.0', JLog::WARNING, 'deprecated');
     // Get the arrays from the Request
     $order = $this->input->post->get('order', null, 'array');
     $originalOrder = explode(',', $this->input->getString('original_order_values'));
     // Make sure something has changed
     if (!($order === $originalOrder)) {
         parent::saveorder();
     } else {
         // Nothing to reorder
         $this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false));
         return true;
     }
 }
 function saveorder()
 {
     $cid = JRequest::getVar('cid', array(), '', 'array');
     JArrayHelper::toInteger($cid);
     JRequest::setVar('cid', $cid, 'post');
     JFactory::getApplication()->input->post->set('cid', $cid);
     $order = JRequest::getVar('order', null, 'get', 'array');
     JArrayHelper::toInteger($order);
     JRequest::setVar('order', $order, 'post');
     JFactory::getApplication()->input->post->set('order', $order);
     JRequest::setVar(JRequest::getCmd('formtoken'), 1, 'post');
     JFactory::getApplication()->input->post->set(JRequest::getCmd('formtoken'), 1);
     for ($i = 0; $i < count($cid); $i++) {
         if (!igGeneralHelper::authorise('core.igalleryfront.edit.state', $cid[$i])) {
             return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
         }
     }
     parent::saveorder();
 }
Example #8
0
 public function saveorder()
 {
     JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
     $app = JFactory::getApplication();
     $order = $app->input->post->get('order', null, 'array');
     $originalOrder = explode(',', $app->input->post->get('original_order_values', null, 'string'));
     if (!($order === $originalOrder)) {
         parent::saveorder();
     }
     $cat_id = $app->input->getInt('cat_id', 1);
     $this->setRedirect("index.php?option=com_judirectory&view=listcats&cat_id=" . $cat_id);
 }
Example #9
0
 /**
  * Method to save the submitted ordering values for records.
  *
  * Overrides JControllerAdmin::saveorder to check the core.admin permission.
  *
  * @since   1.6
  */
 public function saveorder()
 {
     if (!JFactory::getUser()->authorise('core.admin', $this->option)) {
         throw new Exception(JText::_('JERROR_ALERTNOAUTHOR'));
         jexit();
     }
     return parent::saveorder();
 }
Example #10
0
File: groups.php Project: 01J/topm
 /**
  * Method to save the submitted ordering values for records.
  *
  * Overrides JControllerAdmin::saveorder to check the core.admin permission.
  *
  * @since   1.6
  */
 public function saveorder()
 {
     if (!JFactory::getUser()->authorise('core.admin', $this->option)) {
         JError::raiseError(500, JText::_('JERROR_ALERTNOAUTHOR'));
         jexit();
     }
     return parent::saveorder();
 }
Example #11
0
 public function saveorder()
 {
     $app = JFactory::getApplication();
     $documentid = $app->input->post->get('documentid', array(), 'array');
     $app->input->post->set('cid', $documentid);
     $_POST['cid'] = $documentid;
     $rootCat = JUDownloadFrontHelperCategory::getRootCategory();
     $cat_id = $app->input->getInt('cat_id', $rootCat->id);
     parent::saveorder();
     $this->setRedirect("index.php?option=com_judownload&view={$this->view_list}&cat_id={$cat_id}");
 }
Example #12
0
 public function saveorder()
 {
     parent::saveorder();
     $this->setRedirectToSlides();
 }
Example #13
0
 /**
  * Logic to saver order of multiple categories at once
  *
  * @access public
  * @return void
  * @since 1.0
  */
 function saveorder()
 {
     // Check for request forgeries
     JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
     // Get the arrays from the Request
     $order = JRequest::getVar('order', null, 'post', 'array');
     $originalOrder = explode(',', JRequest::getString('original_order_values'));
     // Make sure something has changed
     if (!($order === $originalOrder)) {
         parent::saveorder();
     } else {
         // Nothing to reorder
         $this->setRedirect(JRoute::_('index.php?option=' . $this->option . '&view=' . $this->view_list, false), 'Nothing to reorder');
     }
     // clean cache
     $cache = JFactory::getCache('com_flexicontent');
     $cache->clean();
     $catscache = JFactory::getCache('com_flexicontent_cats');
     $catscache->clean();
 }
Example #14
0
 /**
  * Method to save the submitted ordering values for records.
  *
  * Overrides JControllerAdmin::saveorder to check the core.admin permission.
  *
  * @since	1.6
  */
 public function saveorder()
 {
     if (!User::authorise('core.admin', $this->option)) {
         App::abort(500, Lang::txt('JERROR_ALERTNOAUTHOR'));
         exit;
     }
     return parent::saveorder();
 }
Example #15
0
 function saveorder()
 {
     parent::saveorder();
     $this->setRedirect('index.php?option=com_eventgallery&view=files&folderid=' . JRequest::getVar('folderid'));
 }