Mage_Page_Block_Html_Footer Class Reference

Inheritance diagram for Mage_Page_Block_Html_Footer:

Mage_Core_Block_Template Mage_Core_Block_Abstract Varien_Object

List of all members.

Public Member Functions

 getCacheKey ()
 setCopyright ($copyright)
 getCopyright ()
 getChildHtml ($name='', $useCache=true, $sorted=true)

Protected Member Functions

 _construct ()

Protected Attributes

 $_copyright


Detailed Description

Definition at line 34 of file Footer.php.


Member Function Documentation

_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

Returns:
string

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     }

getChildHtml ( name = '',
useCache = true,
sorted = true 
)

Retrieve child block HTML, sorted by default

Parameters:
string $name
boolean $useCache
Returns:
string

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  ) 

Definition at line 60 of file Footer.php.

00061     {
00062         $this->_copyright = $copyright;
00063         return $this;
00064     }


Member Data Documentation

$_copyright [protected]

Definition at line 37 of file Footer.php.


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

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