Public Member Functions | |
render (Varien_Object $row) |
Definition at line 35 of file Product.php.
render | ( | Varien_Object $ | row | ) |
Renders grid column
Varien_Object | $row |
Reimplemented from Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract.
Definition at line 44 of file Product.php.
00045 { 00046 $id = $row->getId(); 00047 00048 return sprintf('<a href="%s">%s</a>', 00049 $this->getUrl('*/catalog_product_review/', array('productId' => $id)), 00050 Mage::helper('adminhtml')->__('Show reviews') 00051 ); 00052 }