File manager - Edit - /home/capoccitel/www/administrator/components/com_tz_portfolio_plus/controllers/acl.php
Back
<?php /*------------------------------------------------------------------------ # TZ Portfolio Plus Extension # ------------------------------------------------------------------------ # author DuongTVTemPlaza # copyright Copyright (C) 2015 templaza.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://www.templaza.com # Technical Support: Forum - http://templaza.com/Forum -------------------------------------------------------------------------*/ // No direct access. defined('_JEXEC') or die; jimport('joomla.application.component.controllerform'); class TZ_Portfolio_PlusControllerAcl extends JControllerForm { public function getModel($name = 'Acl', $prefix = 'TZ_Portfolio_PlusModel', $config = array('ignore_request' => true)) { $model = parent::getModel($name, $prefix, $config); return $model; } public function edit($key = null, $urlVar = null) { // Do not cache the response to this, its a redirect, and mod_expires and google chrome browser bugs cache it forever! \JFactory::getApplication()->allowCache(false); $model = $this->getModel(); // $table = $model->getTable(); $section = $this->input->post->get('section', array(), 'array'); $context = "$this->option.edit.$this->context"; // Determine the name of the primary key for the data. if (empty($key)) { $key = 'section'; } // To avoid data collisions the urlVar may be different from the primary key. if (empty($urlVar)) { $urlVar = $key; } // Get the previous record id (if any) and the current record id. $recordSection = (string) (count($section) ? $section[0] : $this->input->get($urlVar)); // Access check. if (!$this->allowEdit(array($key => $recordSection), $key)) { $this->setMessage(\JText::_('JLIB_APPLICATION_ERROR_EDIT_NOT_PERMITTED'), 'error'); $this->setRedirect( \JRoute::_( 'index.php?option=' . $this->option . '&view=' . $this->view_list . $this->getRedirectToListAppend(), false ) ); return false; } // Check-out succeeded, push the new record id into the session. $this->holdEditSection($context, $recordSection); \JFactory::getApplication()->setUserState($context . '.data', null); $this->setRedirect( \JRoute::_( 'index.php?option=' . $this->option . '&view=' . $this->view_item . $this->getRedirectToItemAppend($recordSection, $urlVar), false ) ); return true; } protected function holdEditSection($context, $section) { $app = \JFactory::getApplication(); $values = (array) $app->getUserState($context . '.section'); // Add the id to the list if non-zero. if (!empty($section)) { $values[] = (string) $section; $values = array_unique($values); $app->setUserState($context . '.section', $values); if (defined('JDEBUG') && JDEBUG) { \JLog::add( sprintf( 'Holding edit ID %s.%s %s', $context, $section, str_replace("\n", ' ', print_r($values, 1)) ), \JLog::INFO, 'controller' ); } } } }
| ver. 1.6 |
Github
|
.
| PHP 7.4.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings