123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * Factory for Acl resource
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Acl;
- use Magento\Framework\ObjectManagerInterface;
- class AclResourceFactory
- {
- const RESOURCE_CLASS_NAME = \Magento\Framework\Acl\AclResource::class;
- /**
- * @var ObjectManagerInterface
- */
- protected $_objectManager;
- /**
- * @param ObjectManagerInterface $objectManager
- */
- public function __construct(ObjectManagerInterface $objectManager)
- {
- $this->_objectManager = $objectManager;
- }
- /**
- * Return new ACL resource model
- *
- * @param array $arguments
- * @return AclResource
- */
- public function createResource(array $arguments = [])
- {
- return $this->_objectManager->create(self::RESOURCE_CLASS_NAME, $arguments);
- }
- }
|