function hook_entity_create_access in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_create_access()
Control entity create access.
Parameters
\Drupal\Core\Session\AccountInterface $account: The account trying to access the entity.
array $context: An associative array of additional context values. By default it contains language:
- langcode - the current language code.
string $entity_bundle: The entity bundle name.
Return value
\Drupal\Core\Access\AccessResultInterface The access result.
See also
\Drupal\Core\Entity\EntityAccessControlHandler
hook_ENTITY_TYPE_create_access()
Related topics
1 function implements hook_entity_create_access()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- entity_test_entity_create_access in core/
modules/ system/ tests/ modules/ entity_test/ entity_test.module - Implements hook_entity_create_access().
1 invocation of hook_entity_create_access()
- EntityAccessControlHandler::createAccess in core/
lib/ Drupal/ Core/ Entity/ EntityAccessControlHandler.php - Checks access to create an entity.
File
- core/
lib/ Drupal/ Core/ Entity/ entity.api.php, line 609 - Hooks and documentation related to entities.
Code
function hook_entity_create_access(\Drupal\Core\Session\AccountInterface $account, array $context, $entity_bundle) {
// No opinion.
return AccessResult::neutral();
}