class EntityCreateAccessCheck in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/EntityCreateAccessCheck.php \Drupal\Core\Entity\EntityCreateAccessCheck
Defines an access checker for entity creation.
Hierarchy
- class \Drupal\Core\Entity\EntityCreateAccessCheck implements AccessInterface
Expanded class hierarchy of EntityCreateAccessCheck
1 file declares its use of EntityCreateAccessCheck
- EntityCreateAccessCheckTest.php in core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityCreateAccessCheckTest.php - Contains \Drupal\Tests\Core\Entity\EntityCreateAccessCheckTest.
1 string reference to 'EntityCreateAccessCheck'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses EntityCreateAccessCheck
File
- core/
lib/ Drupal/ Core/ Entity/ EntityCreateAccessCheck.php, line 19 - Contains \Drupal\Core\Entity\EntityCreateAccessCheck.
Namespace
Drupal\Core\EntityView source
class EntityCreateAccessCheck implements AccessInterface {
/**
* The entity manager.
*
* @var \Drupal\Core\Entity\EntityManagerInterface
*/
protected $entityManager;
/**
* The key used by the routing requirement.
*
* @var string
*/
protected $requirementsKey = '_entity_create_access';
/**
* Constructs a EntityCreateAccessCheck object.
*
* @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
* The entity manager.
*/
public function __construct(EntityManagerInterface $entity_manager) {
$this->entityManager = $entity_manager;
}
/**
* Checks access to create the entity type and bundle for the given route.
*
* @param \Symfony\Component\Routing\Route $route
* The route to check against.
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
* The parametrized route.
* @param \Drupal\Core\Session\AccountInterface $account
* The currently logged in account.
*
* @return \Drupal\Core\Access\AccessResultInterface
* The access result.
*/
public function access(Route $route, RouteMatchInterface $route_match, AccountInterface $account) {
list($entity_type, $bundle) = explode(':', $route
->getRequirement($this->requirementsKey) . ':');
// The bundle argument can contain request argument placeholders like
// {name}, loop over the raw variables and attempt to replace them in the
// bundle name. If a placeholder does not exist, it won't get replaced.
if ($bundle && strpos($bundle, '{') !== FALSE) {
foreach ($route_match
->getRawParameters()
->all() as $name => $value) {
$bundle = str_replace('{' . $name . '}', $value, $bundle);
}
// If we were unable to replace all placeholders, deny access.
if (strpos($bundle, '{') !== FALSE) {
return AccessResult::neutral();
}
}
return $this->entityManager
->getAccessControlHandler($entity_type)
->createAccess($bundle, $account, [], TRUE);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityCreateAccessCheck:: |
protected | property | The entity manager. | |
EntityCreateAccessCheck:: |
protected | property | The key used by the routing requirement. | |
EntityCreateAccessCheck:: |
public | function | Checks access to create the entity type and bundle for the given route. | |
EntityCreateAccessCheck:: |
public | function | Constructs a EntityCreateAccessCheck object. |