12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /**
- * Magento Authorization component. Can be used to add authorization facility to any application
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework;
- class Authorization implements \Magento\Framework\AuthorizationInterface
- {
- /**
- * ACL policy
- *
- * @var \Magento\Framework\Authorization\PolicyInterface
- */
- protected $_aclPolicy;
- /**
- * ACL role locator
- *
- * @var \Magento\Framework\Authorization\RoleLocatorInterface
- */
- protected $_aclRoleLocator;
- /**
- * @param \Magento\Framework\Authorization\PolicyInterface $aclPolicy
- * @param \Magento\Framework\Authorization\RoleLocatorInterface $roleLocator
- */
- public function __construct(
- \Magento\Framework\Authorization\PolicyInterface $aclPolicy,
- \Magento\Framework\Authorization\RoleLocatorInterface $roleLocator
- ) {
- $this->_aclPolicy = $aclPolicy;
- $this->_aclRoleLocator = $roleLocator;
- }
- /**
- * Check current user permission on resource and privilege
- *
- * @param string $resource
- * @param string $privilege
- * @return boolean
- */
- public function isAllowed($resource, $privilege = null)
- {
- return $this->_aclPolicy->isAllowed($this->_aclRoleLocator->getAclRoleId(), $resource, $privilege);
- }
- }
|