1: <?php
2: /**
3: * Magento
4: *
5: * NOTICE OF LICENSE
6: *
7: * This source file is subject to the Open Software License (OSL 3.0)
8: * that is bundled with this package in the file LICENSE.txt.
9: * It is also available through the world-wide-web at this URL:
10: * http://opensource.org/licenses/osl-3.0.php
11: * If you did not receive a copy of the license and are unable to
12: * obtain it through the world-wide-web, please send an email
13: * to license@magentocommerce.com so we can send you a copy immediately.
14: *
15: * DISCLAIMER
16: *
17: * Do not edit or add to this file if you wish to upgrade Magento to newer
18: * versions in the future. If you wish to customize Magento for your
19: * needs please refer to http://www.magentocommerce.com for more information.
20: *
21: * @category Mage
22: * @package Mage_Adminhtml
23: * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24: * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25: */
26:
27: /**
28: * Adminhtml report reviews product grid block
29: *
30: * @category Mage
31: * @package Mage_Adminhtml
32: * @author Magento Core Team <core@magentocommerce.com>
33: */
34: class Mage_Adminhtml_Block_Report_Review_Detail_Grid extends Mage_Adminhtml_Block_Widget_Grid
35: {
36:
37: public function __construct()
38: {
39: parent::__construct();
40: $this->setId('reviews_grid');
41: }
42:
43: protected function _prepareCollection()
44: {
45:
46: //$collection = Mage::getModel('review/review')->getProductCollection();
47:
48: //$collection->getSelect()
49: // ->where('rt.entity_pk_value='.(int)$this->getRequest()->getParam('id'));
50:
51: //$collection->getEntity()->setStore(0);
52:
53: $collection = Mage::getResourceModel('reports/review_collection')
54: ->addProductFilter((int)$this->getRequest()->getParam('id'));
55:
56: $this->setCollection($collection);
57:
58: parent::_prepareCollection();
59:
60: return $this;
61: }
62:
63: protected function _prepareColumns()
64: {
65:
66: $this->addColumn('nickname', array(
67: 'header' =>Mage::helper('reports')->__('Customer'),
68: 'width' =>'100px',
69: 'index' =>'nickname'
70: ));
71:
72: $this->addColumn('title', array(
73: 'header' =>Mage::helper('reports')->__('Title'),
74: 'width' =>'150px',
75: 'index' =>'title'
76: ));
77:
78: $this->addColumn('detail', array(
79: 'header' =>Mage::helper('reports')->__('Detail'),
80: 'index' =>'detail'
81: ));
82:
83: $this->addColumn('created_at', array(
84: 'header' =>Mage::helper('reports')->__('Created At'),
85: 'index' =>'created_at',
86: 'width' =>'200px',
87: 'type' =>'datetime'
88: ));
89:
90: $this->setFilterVisibility(false);
91:
92: $this->addExportType('*/*/exportProductDetailCsv', Mage::helper('reports')->__('CSV'));
93: $this->addExportType('*/*/exportProductDetailExcel', Mage::helper('reports')->__('Excel XML'));
94:
95: return parent::_prepareColumns();
96: }
97:
98: }
99:
100: