Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-reports/Controller/Adminhtml/Report/Customer/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-reports/Controller/Adminhtml/Report/Customer/Orders.php

<?php
/**
 *
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Reports\Controller\Adminhtml\Report\Customer;

use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;

class Orders extends \Magento\Reports\Controller\Adminhtml\Report\Customer implements HttpGetActionInterface
{
    /**
     * Customers by number of orders action
     *
     * @return void
     */
    public function execute()
    {
        $this->_initAction()->_setActiveMenu(
            'Magento_Reports::report_customers_orders'
        )->_addBreadcrumb(
            __('Customers by Number of Orders'),
            __('Customers by Number of Orders')
        );
        $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Order Count Report'));
        $this->_view->renderLayout();
    }
}