Mage_Rss_Block_Abstract Class Reference

Inheritance diagram for Mage_Rss_Block_Abstract:

Mage_Core_Block_Template Mage_Core_Block_Abstract Varien_Object Mage_Rss_Block_Catalog_Category Mage_Rss_Block_Catalog_New Mage_Rss_Block_Catalog_NotifyStock Mage_Rss_Block_Catalog_Review Mage_Rss_Block_Catalog_Salesrule Mage_Rss_Block_Catalog_Special Mage_Rss_Block_Catalog_Tag

List of all members.

Protected Member Functions

 _getStoreId ()
 _getCustomerGroupId ()


Detailed Description

Definition at line 2 of file Abstract.php.


Member Function Documentation

_getCustomerGroupId (  )  [protected]

Definition at line 14 of file Abstract.php.

00015     {
00016         //customer group id
00017         $custGroupID =   (int) $this->getRequest()->getParam('cid');
00018         if($custGroupID == null) {
00019             $custGroupID = Mage::getSingleton('customer/session')->getCustomerGroupId();
00020         }
00021         return $custGroupID;
00022     }

_getStoreId (  )  [protected]

Definition at line 4 of file Abstract.php.

00005     {
00006         //store id is store view id
00007         $storeId =   (int) $this->getRequest()->getParam('store_id');
00008         if($storeId == null) {
00009            $storeId = Mage::app()->getStore()->getId();
00010         }
00011         return $storeId;
00012     }


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:24:38 2009 for Magento by  doxygen 1.5.8