Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-user/Controller/Adminhtml/User/Role/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-user/Controller/Adminhtml/User/Role/Index.php

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

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

class Index extends \Magento\User\Controller\Adminhtml\User\Role implements HttpGetActionInterface
{
    /**
     * Show grid with roles existing in systems
     *
     * @return void
     */
    public function execute()
    {
        $this->_initAction();
        $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Roles'));
        $this->_view->renderLayout();
    }
}