Public Member Functions | |
getSubscriptionObject () |
Definition at line 35 of file Newsletter.php.
getSubscriptionObject | ( | ) |
Definition at line 37 of file Newsletter.php.
00038 { 00039 if(is_null($this->_subscription)) { 00040 $this->_subscription = Mage::getModel('newsletter/subscriber') 00041 ->loadByCustomer(Mage::getSingleton('customer/session')->getCustomer()); 00042 } 00043 return $this->_subscription; 00044 }