
Public Member Functions | |
| __construct ($attributes=array()) | |
| getCollection () | |
| getCount () | |
| getDataHelper () | |
| getDataHelperName () | |
| setDataHelperName ($dataHelperName) | |
Protected Member Functions | |
| _prepareData () | |
| _prepareLayout () | |
Protected Attributes | |
| $_dataHelperName = null | |
Definition at line 35 of file Abstract.php.
| __construct | ( | $ | attributes = array() |
) |
| _prepareData | ( | ) | [protected] |
Reimplemented in Mage_Adminhtml_Block_Dashboard_Tab_Amounts, and Mage_Adminhtml_Block_Dashboard_Tab_Orders.
Definition at line 70 of file Abstract.php.
| _prepareLayout | ( | ) | [protected] |
Preparing global layout
You can redefine this method in child classes for changin layout
Reimplemented from Mage_Core_Block_Abstract.
Reimplemented in Mage_Adminhtml_Block_Dashboard_Sales, and Mage_Adminhtml_Block_Dashboard_Totals.
Definition at line 75 of file Abstract.php.
00076 { 00077 $this->_prepareData(); 00078 return parent::_prepareLayout(); 00079 }
| getCollection | ( | ) |
Definition at line 44 of file Abstract.php.
00045 { 00046 return $this->getDataHelper()->getCollection(); 00047 }
| getCount | ( | ) |
Definition at line 49 of file Abstract.php.
00050 { 00051 return $this->getDataHelper()->getCount(); 00052 }
| getDataHelper | ( | ) |
Definition at line 54 of file Abstract.php.
00055 { 00056 return $this->helper($this->getDataHelperName()); 00057 }
| getDataHelperName | ( | ) |
| setDataHelperName | ( | $ | dataHelperName | ) |
$_dataHelperName = null [protected] |
Definition at line 37 of file Abstract.php.
1.5.8