1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?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();
}
}