00001 <?php 00002 /** 00003 * Magento 00004 * 00005 * NOTICE OF LICENSE 00006 * 00007 * This source file is subject to the Open Software License (OSL 3.0) 00008 * that is bundled with this package in the file LICENSE.txt. 00009 * It is also available through the world-wide-web at this URL: 00010 * http://opensource.org/licenses/osl-3.0.php 00011 * If you did not receive a copy of the license and are unable to 00012 * obtain it through the world-wide-web, please send an email 00013 * to license@magentocommerce.com so we can send you a copy immediately. 00014 * 00015 * DISCLAIMER 00016 * 00017 * Do not edit or add to this file if you wish to upgrade Magento to newer 00018 * versions in the future. If you wish to customize Magento for your 00019 * needs please refer to http://www.magentocommerce.com for more information. 00020 * 00021 * @category Mage 00022 * @package Mage_Adminhtml 00023 * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) 00024 * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) 00025 */ 00026 00027 /** 00028 * Adminhtml common tax class controller 00029 * 00030 * @category Mage 00031 * @package Mage_Adminhtml 00032 * @author Magento Core Team <core@magentocommerce.com> 00033 */ 00034 class Mage_Adminhtml_Tax_ClassController extends Mage_Adminhtml_Controller_Action 00035 { 00036 /** 00037 * save class action 00038 * 00039 */ 00040 public function saveAction() 00041 { 00042 if ($postData = $this->getRequest()->getPost()) { 00043 $model = Mage::getModel('tax/class') 00044 ->setData($postData); 00045 00046 try { 00047 $model->save(); 00048 $classId = $model->getId(); 00049 $classType = $model->getClassType(); 00050 $classUrl = '*/tax_class_' . strtolower($classType); 00051 00052 Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('tax')->__('Tax class was successfully saved')); 00053 $this->_redirect($classUrl); 00054 00055 return ; 00056 } 00057 catch (Mage_Core_Exception $e) { 00058 Mage::getSingleton('adminhtml/session')->addError($e->getMessage()); 00059 Mage::getSingleton('adminhtml/session')->setClassData($postData); 00060 $this->_redirectReferer(); 00061 } 00062 catch (Exception $e) { 00063 Mage::getSingleton('adminhtml/session')->addError(Mage::helper('tax')->__('Error while saving this tax class. Please try again later.')); 00064 Mage::getSingleton('adminhtml/session')->setClassData($postData); 00065 $this->_redirectReferer(); 00066 } 00067 00068 $this->_redirectReferer(); 00069 } 00070 } 00071 00072 /** 00073 * Initialize action 00074 * 00075 * @return Mage_Adminhtml_Controller_Action 00076 */ 00077 protected function _initAction() 00078 { 00079 $classType = strtolower($this->getRequest()->getParam('classType')); 00080 $this->loadLayout() 00081 ->_setActiveMenu('sales/tax/tax_classes_' . $classType) 00082 ->_addBreadcrumb(Mage::helper('tax')->__('Sales'), Mage::helper('tax')->__('Sales')) 00083 ->_addBreadcrumb(Mage::helper('tax')->__('Tax'), Mage::helper('tax')->__('Tax')) 00084 ; 00085 00086 return $this; 00087 } 00088 }