/app/code/core/Mage/Adminhtml/controllers/Report/TagController.php

https://github.com/guiohm/magento-french · PHP · 282 lines · 178 code · 37 blank · 67 comment · 2 complexity · 8f9c1adbaf677fba401f5cc97dd59eda MD5 · raw file

  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) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
  24. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  25. */
  26. /**
  27. * Tag report admin controller
  28. *
  29. * @category Mage
  30. * @package Mage_Adminhtml
  31. * @author Magento Core Team <core@magentocommerce.com>
  32. */
  33. class Mage_Adminhtml_Report_TagController extends Mage_Adminhtml_Controller_Action
  34. {
  35. public function _initAction()
  36. {
  37. $act = $this->getRequest()->getActionName();
  38. if(!$act)
  39. $act = 'default';
  40. $this->loadLayout()
  41. ->_addBreadcrumb(Mage::helper('reports')->__('Reports'), Mage::helper('reports')->__('Reports'))
  42. ->_addBreadcrumb(Mage::helper('reports')->__('Tag'), Mage::helper('reports')->__('Tag'));
  43. return $this;
  44. }
  45. public function customerAction()
  46. {
  47. $this->_title($this->__('Reports'))
  48. ->_title($this->__('Tags'))
  49. ->_title($this->__('Customers'));
  50. $this->_initAction()
  51. ->_setActiveMenu('report/tag/customer')
  52. ->_addBreadcrumb(Mage::helper('reports')->__('Customers Report'), Mage::helper('reports')->__('Customers Report'))
  53. ->_addContent($this->getLayout()->createBlock('adminhtml/report_tag_customer'))
  54. ->renderLayout();
  55. }
  56. /**
  57. * Export customer's tags report to CSV format
  58. */
  59. public function exportCustomerCsvAction()
  60. {
  61. $fileName = 'tag_customer.csv';
  62. $content = $this->getLayout()->createBlock('adminhtml/report_tag_customer_grid')
  63. ->getCsvFile();
  64. $this->_prepareDownloadResponse($fileName, $content);
  65. }
  66. /**
  67. * Export customer's tags report to Excel XML format
  68. */
  69. public function exportCustomerExcelAction()
  70. {
  71. $fileName = 'tag_customer.xml';
  72. $content = $this->getLayout()->createBlock('adminhtml/report_tag_customer_grid')
  73. ->getExcelFile($fileName);
  74. $this->_prepareDownloadResponse($fileName, $content);
  75. }
  76. public function productAction()
  77. {
  78. $this->_title($this->__('Reports'))
  79. ->_title($this->__('Tags'))
  80. ->_title($this->__('Products'));
  81. $this->_initAction()
  82. ->_setActiveMenu('report/tag/product')
  83. ->_addBreadcrumb(Mage::helper('reports')->__('Poducts Report'), Mage::helper('reports')->__('Products Report'))
  84. ->_addContent($this->getLayout()->createBlock('adminhtml/report_tag_product'))
  85. ->renderLayout();
  86. }
  87. /**
  88. * Export product's tags report to CSV format
  89. */
  90. public function exportProductCsvAction()
  91. {
  92. $fileName = 'tag_product.csv';
  93. $content = $this->getLayout()->createBlock('adminhtml/report_tag_product_grid')
  94. ->getCsvFile();
  95. $this->_prepareDownloadResponse($fileName, $content);
  96. }
  97. /**
  98. * Export product's tags report to Excel XML format
  99. */
  100. public function exportProductExcelAction()
  101. {
  102. $fileName = 'tag_product.xml';
  103. $content = $this->getLayout()->createBlock('adminhtml/report_tag_product_grid')
  104. ->getExcelFile($fileName);
  105. $this->_prepareDownloadResponse($fileName, $content);
  106. }
  107. public function popularAction()
  108. {
  109. $this->_title($this->__('Reports'))
  110. ->_title($this->__('Tags'))
  111. ->_title($this->__('Popular'));
  112. $this->_initAction()
  113. ->_setActiveMenu('report/tag/popular')
  114. ->_addBreadcrumb(Mage::helper('reports')->__('Popular Tags'), Mage::helper('reports')->__('Popular Tags'))
  115. ->_addContent($this->getLayout()->createBlock('adminhtml/report_tag_popular'))
  116. ->renderLayout();
  117. }
  118. /**
  119. * Export popular tags report to CSV format
  120. */
  121. public function exportPopularCsvAction()
  122. {
  123. $fileName = 'tag_popular.csv';
  124. $content = $this->getLayout()->createBlock('adminhtml/report_tag_popular_grid')
  125. ->getCsvFile();
  126. $this->_prepareDownloadResponse($fileName, $content);
  127. }
  128. /**
  129. * Export popular tags report to Excel XML format
  130. */
  131. public function exportPopularExcelAction()
  132. {
  133. $fileName = 'tag_popular.xml';
  134. $content = $this->getLayout()->createBlock('adminhtml/report_tag_popular_grid')
  135. ->getExcelFile($fileName);
  136. $this->_prepareDownloadResponse($fileName, $content);
  137. }
  138. public function customerDetailAction()
  139. {
  140. $this->_initAction()
  141. ->_setActiveMenu('report/tag/customerDetail')
  142. ->_addBreadcrumb(Mage::helper('reports')->__('Customers Report'), Mage::helper('reports')->__('Customers Report'))
  143. ->_addBreadcrumb(Mage::helper('reports')->__('Customer Tags'), Mage::helper('reports')->__('Customer Tags'))
  144. ->_addContent($this->getLayout()->createBlock('adminhtml/report_tag_customer_detail'))
  145. ->renderLayout();
  146. }
  147. /**
  148. * Export customer's tags detail report to CSV format
  149. */
  150. public function exportCustomerDetailCsvAction()
  151. {
  152. $fileName = 'tag_customer_detail.csv';
  153. $content = $this->getLayout()->createBlock('adminhtml/report_tag_customer_detail_grid')
  154. ->getCsvFile();
  155. $this->_prepareDownloadResponse($fileName, $content);
  156. }
  157. /**
  158. * Export customer's tags detail report to Excel XML format
  159. */
  160. public function exportCustomerDetailExcelAction()
  161. {
  162. $fileName = 'tag_customer_detail.xml';
  163. $content = $this->getLayout()->createBlock('adminhtml/report_tag_customer_detail_grid')
  164. ->getExcelFile($fileName);
  165. $this->_prepareDownloadResponse($fileName, $content);
  166. }
  167. public function productDetailAction()
  168. {
  169. $this->_initAction()
  170. ->_setActiveMenu('report/tag/productDetail')
  171. ->_addBreadcrumb(Mage::helper('reports')->__('Products Report'), Mage::helper('reports')->__('Products Report'))
  172. ->_addBreadcrumb(Mage::helper('reports')->__('Product Tags'), Mage::helper('reports')->__('Product Tags'))
  173. ->_addContent($this->getLayout()->createBlock('adminhtml/report_tag_product_detail'))
  174. ->renderLayout();
  175. }
  176. /**
  177. * Export product's tags detail report to CSV format
  178. */
  179. public function exportProductDetailCsvAction()
  180. {
  181. $fileName = 'tag_product_detail.csv';
  182. $content = $this->getLayout()->createBlock('adminhtml/report_tag_product_detail_grid')
  183. ->getCsvFile();
  184. $this->_prepareDownloadResponse($fileName, $content);
  185. }
  186. /**
  187. * Export product's tags detail report to Excel XML format
  188. */
  189. public function exportProductDetailExcelAction()
  190. {
  191. $fileName = 'tag_product_detail.xml';
  192. $content = $this->getLayout()->createBlock('adminhtml/report_tag_product_detail_grid')
  193. ->getExcelFile($fileName);
  194. $this->_prepareDownloadResponse($fileName, $content);
  195. }
  196. public function tagDetailAction()
  197. {
  198. $this->_initAction()
  199. ->_setActiveMenu('report/tag/tagDetail')
  200. ->_addBreadcrumb(Mage::helper('reports')->__('Popular Tags'), Mage::helper('reports')->__('Popular Tags'))
  201. ->_addBreadcrumb(Mage::helper('reports')->__('Tag Detail'), Mage::helper('reports')->__('Tag Detail'))
  202. ->_addContent($this->getLayout()->createBlock('adminhtml/report_tag_popular_detail'))
  203. ->renderLayout();
  204. }
  205. /**
  206. * Export tag detail report to CSV format
  207. */
  208. public function exportTagDetailCsvAction()
  209. {
  210. $fileName = 'tag_detail.csv';
  211. $content = $this->getLayout()->createBlock('adminhtml/report_tag_popular_detail_grid')
  212. ->getCsvFile();
  213. $this->_prepareDownloadResponse($fileName, $content);
  214. }
  215. /**
  216. * Export tag detail report to Excel XML format
  217. */
  218. public function exportTagDetailExcelAction()
  219. {
  220. $fileName = 'tag_detail.xml';
  221. $content = $this->getLayout()->createBlock('adminhtml/report_tag_popular_detail_grid')
  222. ->getExcelFile($fileName);
  223. $this->_prepareDownloadResponse($fileName, $content);
  224. }
  225. protected function _isAllowed()
  226. {
  227. switch ($this->getRequest()->getActionName()) {
  228. case 'customer':
  229. return Mage::getSingleton('admin/session')->isAllowed('report/tags/customer');
  230. break;
  231. case 'product':
  232. return Mage::getSingleton('admin/session')->isAllowed('report/tags/product');
  233. break;
  234. case 'productAll':
  235. return Mage::getSingleton('admin/session')->isAllowed('report/tags/product');
  236. break;
  237. case 'popular':
  238. return Mage::getSingleton('admin/session')->isAllowed('report/tags/popular');
  239. break;
  240. default:
  241. return Mage::getSingleton('admin/session')->isAllowed('report/tags');
  242. break;
  243. }
  244. }
  245. }