| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Adminhtml/controllers/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Adminhtml
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* sales admin controller
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_ReportController extends Mage_Adminhtml_Controller_Action
{
public function _initAction()
{
$this->loadLayout()
->_addBreadcrumb(Mage::helper('adminhtml')->__('Reports'), Mage::helper('adminhtml')->__('Reports'));
return $this;
}
/*
public function wishlistAction()
{
$this->_initAction()
->_setActiveMenu('report/wishlist')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Wishlist Report'), Mage::helper('adminhtml')->__('Wishlist Report'))
->_addContent($this->getLayout()->createBlock('adminhtml/report_wishlist'))
->renderLayout();
}
/**
* Export wishlist report grid to CSV format
* /
public function exportWishlistCsvAction()
{
$fileName = 'wishlist.csv';
$content = $this->getLayout()->createBlock('adminhtml/report_wishlist_grid')
->getCsvFile();
$this->_prepareDownloadResponse($fileName, $content);
}
/**
* Export wishlist report to Excel XML format
* /
public function exportWishlistExcelAction()
{
$fileName = 'wishlist.xml';
$content = $this->getLayout()->createBlock('adminhtml/report_wishlist_grid')
->getExcelFile($fileName);
$this->_prepareDownloadResponse($fileName, $content);
}
*/
public function searchAction()
{
$this->_title($this->__('Reports'))->_title($this->__('Search Terms'));
Mage::dispatchEvent('on_view_report', array('report' => 'search'));
$this->_initAction()
->_setActiveMenu('report/search')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Search Terms'), Mage::helper('adminhtml')->__('Search Terms'))
->_addContent($this->getLayout()->createBlock('adminhtml/report_search'))
->renderLayout();
}
/**
* Export search report grid to CSV format
*/
public function exportSearchCsvAction()
{
$fileName = 'search.csv';
$content = $this->getLayout()->createBlock('adminhtml/report_search_grid')
->getCsvFile();
$this->_prepareDownloadResponse($fileName, $content);
}
/**
* Export search report to Excel XML format
*/
public function exportSearchExcelAction()
{
$fileName = 'search.xml';
$content = $this->getLayout()->createBlock('adminhtml/report_search_grid')
->getExcelFile($fileName);
$this->_prepareDownloadResponse($fileName, $content);
}
/*
public function ordersAction()
{
$this->_initAction()
->_setActiveMenu('report/orders')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Recent Orders'), Mage::helper('adminhtml')->__('Recent Orders'))
->renderLayout();
}
public function totalsAction()
{
$this->_initAction()
->_setActiveMenu('report/totals')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Order Totals'), Mage::helper('adminhtml')->__('Order Totals'))
->renderLayout();
}
*/
protected function _isAllowed()
{
switch ($this->getRequest()->getActionName()) {
case 'search':
return Mage::getSingleton('admin/session')->isAllowed('report/search');
break;
/*
case 'customers':
return Mage::getSingleton('admin/session')->isAllowed('report/shopcart');
break;
*/
default:
return Mage::getSingleton('admin/session')->isAllowed('report');
break;
}
}
}