Public Member Functions | |
getCacheKey () | |
setCopyright ($copyright) | |
getCopyright () | |
getChildHtml ($name='', $useCache=true, $sorted=true) | |
Protected Member Functions | |
_construct () | |
Protected Attributes | |
$_copyright |
Definition at line 34 of file Footer.php.
_construct | ( | ) | [protected] |
Internal constructor, that is called from real constructor
Please override this one instead of overriding real __construct constructor
Please override this one instead of overriding real __construct constructor
Reimplemented from Mage_Core_Block_Abstract.
Definition at line 39 of file Footer.php.
00040 { 00041 $this->addData(array( 00042 'cache_lifetime'=> false, 00043 'cache_tags' => array(Mage_Core_Model_Store::CACHE_TAG, Mage_Cms_Model_Block::CACHE_TAG) 00044 )); 00045 }
getCacheKey | ( | ) |
Retrieve Key for caching block content
Reimplemented from Mage_Core_Block_Abstract.
Definition at line 52 of file Footer.php.
00053 { 00054 return 'PAGE_FOOTER_' . Mage::app()->getStore()->getId() 00055 . '_' . (int)Mage::app()->getStore()->isCurrentlySecure() 00056 . '_' . Mage::getDesign()->getPackageName() 00057 . '_' . Mage::getDesign()->getTheme('template'); 00058 }
Retrieve child block HTML, sorted by default
string | $name | |
boolean | $useCache |
Reimplemented from Mage_Core_Block_Abstract.
Definition at line 82 of file Footer.php.
00083 { 00084 return parent::getChildHtml($name, $useCache, $sorted); 00085 }
getCopyright | ( | ) |
Definition at line 66 of file Footer.php.
00067 { 00068 if (!$this->_copyright) { 00069 $this->_copyright = Mage::getStoreConfig('design/footer/copyright'); 00070 } 00071 00072 return $this->_copyright; 00073 }
setCopyright | ( | $ | copyright | ) |
$_copyright [protected] |
Definition at line 37 of file Footer.php.