*/ class Mage_Adminhtml_Block_Report_Product_Viewed extends Mage_Adminhtml_Block_Widget_Grid_Container { public function __construct() { $this->_controller = 'report_product_viewed'; $this->_headerText = Mage::helper('reports')->__('Most Viewed'); parent::__construct(); $this->setTemplate('report/grid/container.phtml'); $this->_removeButton('add'); $this->addButton('filter_form_submit', array( 'label' => Mage::helper('reports')->__('Show Report'), 'onclick' => 'filterFormSubmit()' )); } /** * Get filter url * * @return string */ public function getFilterUrl() { $this->getRequest()->setParam('filter', null); return $this->getUrl('*/*/viewed', array('_current' => true)); } }