| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Adminhtml/controllers/Customer/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Adminhtml
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Customer groups controller
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_Customer_GroupController extends Mage_Adminhtml_Controller_Action
{
protected function _initGroup()
{
$this->_title($this->__('Customers'))->_title($this->__('Customer Groups'));
Mage::register('current_group', Mage::getModel('customer/group'));
$groupId = $this->getRequest()->getParam('id');
if (!is_null($groupId)) {
Mage::registry('current_group')->load($groupId);
}
}
/**
* Customer groups list.
*/
public function indexAction()
{
$this->_title($this->__('Customers'))->_title($this->__('Customer Groups'));
$this->loadLayout();
$this->_setActiveMenu('customer/group');
$this->_addBreadcrumb(Mage::helper('customer')->__('Customers'), Mage::helper('customer')->__('Customers'));
$this->_addBreadcrumb(Mage::helper('customer')->__('Customer Groups'), Mage::helper('customer')->__('Customer Groups'));
$this->renderLayout();
}
/**
* Edit or create customer group.
*/
public function newAction()
{
$this->_initGroup();
$this->loadLayout();
$this->_setActiveMenu('customer/group');
$this->_addBreadcrumb(Mage::helper('customer')->__('Customers'), Mage::helper('customer')->__('Customers'));
$this->_addBreadcrumb(Mage::helper('customer')->__('Customer Groups'), Mage::helper('customer')->__('Customer Groups'), $this->getUrl('*/customer_group'));
$currentGroup = Mage::registry('current_group');
if (!is_null($currentGroup->getId())) {
$this->_addBreadcrumb(Mage::helper('customer')->__('Edit Group'), Mage::helper('customer')->__('Edit Customer Groups'));
} else {
$this->_addBreadcrumb(Mage::helper('customer')->__('New Group'), Mage::helper('customer')->__('New Customer Groups'));
}
$this->_title($currentGroup->getId() ? $currentGroup->getCode() : $this->__('New Group'));
$this->getLayout()->getBlock('content')
->append($this->getLayout()->createBlock('adminhtml/customer_group_edit', 'group')
->setEditMode((bool)Mage::registry('current_group')->getId()));
$this->renderLayout();
}
/**
* Edit customer group action. Forward to new action.
*/
public function editAction()
{
$this->_forward('new');
}
/**
* Create or save customer group.
*/
public function saveAction()
{
$customerGroup = Mage::getModel('customer/group');
$id = $this->getRequest()->getParam('id');
if (!is_null($id)) {
$customerGroup->load($id);
}
if ($taxClass = $this->getRequest()->getParam('tax_class')) {
try {
$customerGroup->setCode($this->getRequest()->getParam('code'))
->setTaxClassId($taxClass)
->save();
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('customer')->__('The customer group has been saved.'));
$this->getResponse()->setRedirect($this->getUrl('*/customer_group'));
return;
} catch (Exception $e) {
Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
Mage::getSingleton('adminhtml/session')->setCustomerGroupData($customerGroup->getData());
$this->getResponse()->setRedirect($this->getUrl('*/customer_group/edit', array('id' => $id)));
return;
}
} else {
$this->_forward('new');
}
}
/**
* Delete customer group action
*/
public function deleteAction()
{
$customerGroup = Mage::getModel('customer/group');
if ($id = (int)$this->getRequest()->getParam('id')) {
try {
$customerGroup->load($id);
$customerGroup->delete();
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('customer')->__('The customer group has been deleted.'));
$this->getResponse()->setRedirect($this->getUrl('*/customer_group'));
return;
} catch (Exception $e) {
Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
$this->getResponse()->setRedirect($this->getUrl('*/customer_group/edit', array('id' => $id)));
return;
}
}
$this->_redirect('*/customer_group');
}
protected function _isAllowed()
{
return Mage::getSingleton('admin/session')->isAllowed('customer/group');
}
}