Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-widget/Controller/Adminhtml/Widget/Instance/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-widget/Controller/Adminhtml/Widget/Instance/Index.php

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

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

class Index extends \Magento\Widget\Controller\Adminhtml\Widget\Instance implements HttpGetActionInterface
{
    /**
     * Widget Instances Grid
     *
     * @return void
     */
    public function execute()
    {
        $this->_initAction();
        $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Widgets'));
        $this->_view->renderLayout();
    }
}