| 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/Report/ |
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)
*/
/**
* Shopping Cart reports admin controller
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_Report_ShopcartController extends Mage_Adminhtml_Controller_Action
{
public function _initAction()
{
$act = $this->getRequest()->getActionName();
$this->loadLayout()
->_addBreadcrumb(Mage::helper('reports')->__('Reports'), Mage::helper('reports')->__('Reports'))
->_addBreadcrumb(Mage::helper('reports')->__('Shopping Cart'), Mage::helper('reports')->__('Shopping Cart'));
return $this;
}
public function customerAction()
{
$this->_title($this->__('Reports'))
->_title($this->__('Shopping Cart'))
->_title($this->__('Customer Shopping Carts'));
$this->_initAction()
->_setActiveMenu('report/shopcart/customer')
->_addBreadcrumb(Mage::helper('reports')->__('Customers Report'), Mage::helper('reports')->__('Customers Report'))
->_addContent($this->getLayout()->createBlock('adminhtml/report_shopcart_customer'))
->renderLayout();
}
/**
* Export shopcart customer report to CSV format
*/
public function exportCustomerCsvAction()
{
$fileName = 'shopcart_customer.csv';
$content = $this->getLayout()->createBlock('adminhtml/report_shopcart_customer_grid')
->getCsvFile();
$this->_prepareDownloadResponse($fileName, $content);
}
/**
* Export shopcart customer report to Excel XML format
*/
public function exportCustomerExcelAction()
{
$fileName = 'shopcart_customer.xml';
$content = $this->getLayout()->createBlock('adminhtml/report_shopcart_customer_grid')
->getExcelFile($fileName);
$this->_prepareDownloadResponse($fileName, $content);
}
public function productAction()
{
$this->_title($this->__('Reports'))
->_title($this->__('Shopping Cart'))
->_title($this->__('Products in Carts'));
$this->_initAction()
->_setActiveMenu('report/shopcart/product')
->_addBreadcrumb(Mage::helper('reports')->__('Products Report'), Mage::helper('reports')->__('Products Report'))
->_addContent($this->getLayout()->createBlock('adminhtml/report_shopcart_product'))
->renderLayout();
}
/**
* Export products report grid to CSV format
*/
public function exportProductCsvAction()
{
$fileName = 'shopcart_product.csv';
$content = $this->getLayout()->createBlock('adminhtml/report_shopcart_product_grid')
->getCsvFile();
$this->_prepareDownloadResponse($fileName, $content);
}
/**
* Export products report to Excel XML format
*/
public function exportProductExcelAction()
{
$fileName = 'shopcart_product.xml';
$content = $this->getLayout()->createBlock('adminhtml/report_shopcart_product_grid')
->getExcelFile($fileName);
$this->_prepareDownloadResponse($fileName, $content);
}
public function abandonedAction()
{
$this->_title($this->__('Reports'))
->_title($this->__('Shopping Cart'))
->_title($this->__('Abandoned Carts'));
$this->_initAction()
->_setActiveMenu('report/shopcart/abandoned')
->_addBreadcrumb(Mage::helper('reports')->__('Abandoned Carts'), Mage::helper('reports')->__('Abandoned Carts'))
->_addContent($this->getLayout()->createBlock('adminhtml/report_shopcart_abandoned'))
->renderLayout();
}
/**
* Export abandoned carts report grid to CSV format
*/
public function exportAbandonedCsvAction()
{
$fileName = 'shopcart_abandoned.csv';
$content = $this->getLayout()->createBlock('adminhtml/report_shopcart_abandoned_grid')
->getCsvFile();
$this->_prepareDownloadResponse($fileName, $content);
}
/**
* Export abandoned carts report to Excel XML format
*/
public function exportAbandonedExcelAction()
{
$fileName = 'shopcart_abandoned.xml';
$content = $this->getLayout()->createBlock('adminhtml/report_shopcart_abandoned_grid')
->getExcelFile($fileName);
$this->_prepareDownloadResponse($fileName, $content);
}
protected function _isAllowed()
{
switch ($this->getRequest()->getActionName()) {
case 'customer':
return Mage::getSingleton('admin/session')->isAllowed('report/shopcart/customer');
break;
case 'product':
return Mage::getSingleton('admin/session')->isAllowed('report/shopcart/product');
break;
case 'abandoned':
return Mage::getSingleton('admin/session')->isAllowed('report/shopcart/abandoned');
break;
default:
return Mage::getSingleton('admin/session')->isAllowed('report/shopcart');
break;
}
}
}