*/ class Mage_Adminhtml_Block_Report_Review_Detail extends Mage_Adminhtml_Block_Widget_Grid_Container { public function __construct() { $this->_controller = 'report_review_detail'; $product = Mage::getModel('catalog/product')->load($this->getRequest()->getParam('id')); $this->_headerText = Mage::helper('reports')->__('Reviews for %s', $product->getName()); parent::__construct(); $this->_removeButton('add'); $this->setBackUrl($this->getUrl('*/report_review/product/')); $this->_addBackButton(); } }