PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
administrator
/
components
/
com_djcatalog2
/
controllers
<?php /** * @version $Id: customer.php 272 2014-05-21 10:25:49Z michal $ * @package DJ-Catalog2 * @copyright Copyright (C) 2012 DJ-Extensions.com LTD, All rights reserved. * @license http://www.gnu.org/licenses GNU/GPL * @author url: http://dj-extensions.com * @author email contact@dj-extensions.com * @developer Michal Olczyk - michal.olczyk@design-joomla.eu * * DJ-Catalog2 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * DJ-Catalog2 is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with DJ-Catalog2. If not, see <http://www.gnu.org/licenses/>. * */ defined('_JEXEC') or die; jimport('joomla.application.component.controllerform'); class Djcatalog2ControllerCustomer extends JControllerForm { public function save($key = null, $urlVar = null) { return parent::save($key, $urlVar); } public function edit($key = null, $urlVar = null) { $app = JFactory::getApplication(); $cid = $app->input->get('cid', array(), 'array'); $recordId = count($cid) ? $cid[0] : 0; $parts = explode(',', $recordId); if (count($parts) == 2) { $cid = $parts[1]; $user_id = $parts[0]; $app->input->set('user_id', $user_id); $app->input->set('cid', array($cid)); $app->input->post->set('cid', array($cid)); $app->input->set('cid', array($cid)); @JRequest::setVar('cid', array($cid), 'post'); @JRequest::setVar('user_id', $user_id, 'post'); if (!$cid) { return $this->add(); } } return parent::edit($key, $urlVar); } public function edituser($key = null, $urlVar = null) { $app = JFactory::getApplication(); $cid = $app->input->post->get('cid', array(), 'array'); $recordId = count($cid) ? $cid[0] : 0; $parts = explode(':', $recordId); if (count($parts) == 2) { $recordId = $parts[0]; } $this->setRedirect('index.php?option=com_users&task=user.edit&id='.$recordId); return true; } protected function getRedirectToItemAppend($recordId = null, $urlVar = 'id') { $append = parent::getRedirectToItemAppend($recordId, $urlVar); $app = JFactory::getApplication(); if ($user_id = $app->input->get('user_id')) { $append .= '&user_id='.(int)$user_id; } return $append; } } ?>
[+]
..
[-] categories.php
[edit]
[-] category.php
[edit]
[-] countries.php
[edit]
[-] country.php
[edit]
[-] cpanel.php
[edit]
[-] customer.php
[edit]
[-] customergroup.php
[edit]
[-] customergroups.php
[edit]
[-] customers.php
[edit]
[-] field.php
[edit]
[-] field.raw.php
[edit]
[-] fieldgroup.php
[edit]
[-] fieldgroups.php
[edit]
[-] fields.php
[edit]
[-] index.html
[edit]
[-] item.php
[edit]
[-] item.raw.php
[edit]
[-] items.php
[edit]
[-] license.php
[edit]
[-] order.php
[edit]
[-] orders.php
[edit]
[-] prices.php
[edit]
[-] producer.php
[edit]
[-] producers.php
[edit]
[-] queries.php
[edit]
[-] query.php
[edit]
[-] relateditems.php
[edit]
[-] state.php
[edit]
[-] states.php
[edit]
[-] taxrate.php
[edit]
[-] taxrates.php
[edit]
[-] taxrule.php
[edit]
[-] taxrules.php
[edit]
[-] thumbs.raw.php
[edit]
[-] .htaccess.disabled
[edit]