public static function WebformEntityAccessControlHandler::createInstance in Webform 6.x
Same name and namespace in other branches
- 8.5 src/WebformEntityAccessControlHandler.php \Drupal\webform\WebformEntityAccessControlHandler::createInstance()
Instantiates a new instance of this entity handler.
This is a factory method that returns a new instance of this object. The factory should pass any needed dependencies into the constructor of this object, but not the container itself. Every call to this method must return a new instance of this object; that is, it may not implement a singleton.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this object should use.
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.
Return value
static A new instance of the entity handler.
Overrides EntityHandlerInterface::createInstance
1 call to WebformEntityAccessControlHandler::createInstance()
- WebformEntityAccessControlHandlerTest::testCheckAccess in tests/
src/ Unit/ WebformEntityAccessControlHandlerTest.php - Tests the access logic.
File
- src/
WebformEntityAccessControlHandler.php, line 48
Class
- WebformEntityAccessControlHandler
- Defines the access control handler for the webform entity type.
Namespace
Drupal\webformCode
public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
$instance = new static($entity_type);
$instance->requestStack = $container
->get('request_stack');
$instance->entityTypeManager = $container
->get('entity_type.manager');
$instance->webformSourceEntityManager = $container
->get('plugin.manager.webform.source_entity');
$instance->accessRulesManager = $container
->get('webform.access_rules_manager');
return $instance;
}