| Current Path : /home/rtorresani/www/vendor/magento/module-widget/Controller/Adminhtml/Widget/Instance/ |
| 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();
}
}