Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
zendframework1
library
Zend
Acl
Role.php
Go to the documentation of this file.
1
<?php
26
#require_once 'Zend/Acl/Role/Interface.php';
27
28
35
class
Zend_Acl_Role
implements
Zend_Acl_Role_Interface
36
{
42
protected
$_roleId
;
43
49
public
function
__construct
(
$roleId
)
50
{
51
$this->_roleId = (string)
$roleId
;
52
}
53
59
public
function
getRoleId
()
60
{
61
return
$this->_roleId
;
62
}
63
70
public
function
__toString
()
71
{
72
return
$this->
getRoleId
();
73
}
74
}
Zend_Acl_Role\__toString
__toString()
Definition:
Role.php:70
Zend_Acl_Role\__construct
__construct($roleId)
Definition:
Role.php:49
Zend_Acl_Role\$_roleId
$_roleId
Definition:
Role.php:42
$roleId
$roleId
Definition:
webapi_user.php:22
Zend_Acl_Role_Interface
Definition:
Interface.php:29
Zend_Acl_Role\getRoleId
getRoleId()
Definition:
Role.php:59
Zend_Acl_Role
Definition:
Role.php:35