Public Member Functions | |
render (Varien_Object $row) |
Definition at line 35 of file Group.php.
render | ( | Varien_Object $ | row | ) |
Renders grid column
Varien_Object | $row |
Reimplemented from Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract.
Definition at line 37 of file Group.php.
00038 { 00039 if (!$row->getData($this->getColumn()->getIndex())) { 00040 return null; 00041 } 00042 return '<a title="'.Mage::helper('core')->__('Edit Store').'" href="'.$this->getUrl('*/*/editGroup', array('group_id'=>$row->getGroupId())).'">' . $row->getData($this->getColumn()->getIndex()) . '</a>'; 00043 }