12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?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 <core@magentocommerce.com>
- * @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();
- }
- }
|