![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-user/Block/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\User\Block; /** * Magento_User role block * * @api * @author Magento Core Team <[email protected]> * @since 100.0.2 */ class Role extends \Magento\Backend\Block\Widget\Grid\Container { /** * @var string */ protected $_controller = 'user_role'; /** * @var string */ protected $_blockGroup = 'Magento_User'; /** * Class constructor * * @return void */ protected function _construct() { $this->_headerText = __('Roles'); $this->_addButtonLabel = __('Add New Role'); parent::_construct(); } /** * @return string */ public function getCreateUrl() { return $this->getUrl('*/*/editrole'); } /** * @return $this */ protected function _prepareLayout() { if (!$this->getLayout()->getChildName($this->getNameInLayout(), 'grid')) { $this->setChild( 'grid', $this->getLayout()->createBlock( $this->_blockGroup . '\\Block\\Role\\Grid', $this->_controller . '.grid' )->setSaveParametersInSession( true ) ); } return \Magento\Backend\Block\Widget\Container::_prepareLayout(); } /** * Prepare output HTML * * @return string */ protected function _toHtml() { $this->_eventManager->dispatch('permissions_role_html_before', ['block' => $this]); return parent::_toHtml(); } }