Public Member Functions | |
getGridUrl () | |
getRowUrl ($row) | |
Protected Member Functions | |
_prepareMassaction () | |
_prepareColumns () |
Definition at line 34 of file Grid.php.
_prepareColumns | ( | ) | [protected] |
Prepare columns layout
Reimplemented from Mage_Adminhtml_Block_Catalog_Product_Grid.
Definition at line 51 of file Grid.php.
00052 { 00053 $this->addColumn('entity_id', 00054 array( 00055 'header'=> Mage::helper('adminhtml')->__('ID'), 00056 'width' => 50, 00057 'index' => 'entity_id', 00058 )); 00059 00060 $this->addColumn('name', 00061 array( 00062 'header'=> Mage::helper('adminhtml')->__('Name'), 00063 'index' => 'name', 00064 )); 00065 00066 $this->addColumn('sku', 00067 array( 00068 'header'=> Mage::helper('adminhtml')->__('SKU'), 00069 'width' => 80, 00070 'index' => 'sku', 00071 )); 00072 $this->addColumn('status', 00073 array( 00074 'header'=> Mage::helper('adminhtml')->__('Status'), 00075 'width' => 50, 00076 'index' => 'status', 00077 'type' => 'options', 00078 'options' => Mage::getSingleton('catalog/product_status')->getOptionArray(), 00079 )); 00080 return $this; 00081 }
_prepareMassaction | ( | ) | [protected] |
Disable massaction
Reimplemented from Mage_Adminhtml_Block_Catalog_Product_Grid.
Definition at line 41 of file Grid.php.
getGridUrl | ( | ) |
Get url for dispatching grid ajax requests
Reimplemented from Mage_Adminhtml_Block_Catalog_Product_Grid.
Definition at line 88 of file Grid.php.
getRowUrl | ( | $ | row | ) |