Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-indexer/Controller/Adminhtml/Indexer/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-indexer/Controller/Adminhtml/Indexer/ListAction.php

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

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

/**
 * Controller for indexer grid
 */
class ListAction extends \Magento\Indexer\Controller\Adminhtml\Indexer implements HttpGetActionInterface
{
    /**
     * Display processes grid action
     *
     * @return void
     */
    public function execute()
    {
        $this->_view->loadLayout();
        $this->_setActiveMenu('Magento_Indexer::system_index');
        $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Index Management'));
        $this->_view->renderLayout();
    }
}