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_Newsletter 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 /** 00029 * Customers newsletter subscription controller 00030 * 00031 * @category Mage 00032 * @package Mage_Newsletter 00033 * @author Magento Core Team <core@magentocommerce.com> 00034 */ 00035 class Mage_Newsletter_ManageController extends Mage_Core_Controller_Front_Action 00036 { 00037 /** 00038 * Action predispatch 00039 * 00040 * Check customer authentication for some actions 00041 */ 00042 public function preDispatch() 00043 { 00044 parent::preDispatch(); 00045 if (!Mage::getSingleton('customer/session')->authenticate($this)) { 00046 $this->setFlag('', 'no-dispatch', true); 00047 } 00048 } 00049 00050 public function indexAction() 00051 { 00052 $this->loadLayout(); 00053 $this->_initLayoutMessages('customer/session'); 00054 $this->_initLayoutMessages('catalog/session'); 00055 00056 if ($block = $this->getLayout()->getBlock('customer_newsletter')) { 00057 $block->setRefererUrl($this->_getRefererUrl()); 00058 } 00059 $this->getLayout()->getBlock('head')->setTitle($this->__('Newsletter Subscription')); 00060 $this->renderLayout(); 00061 } 00062 00063 public function saveAction() 00064 { 00065 if (!$this->_validateFormKey()) { 00066 return $this->_redirect('customer/account/'); 00067 } 00068 try { 00069 Mage::getSingleton('customer/session')->getCustomer() 00070 ->setStoreId(Mage::app()->getStore()->getId()) 00071 ->setIsSubscribed((boolean)$this->getRequest()->getParam('is_subscribed', false)) 00072 ->save(); 00073 Mage::getSingleton('customer/session')->addSuccess($this->__('The subscription was successfully saved')); 00074 } 00075 catch (Exception $e) { 00076 Mage::getSingleton('customer/session')->addError($this->__('There was an error while saving your subscription')); 00077 } 00078 $this->_redirect('customer/account/'); 00079 } 00080 }