Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_create_access()
  2. 9 core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_create_access()

Control entity create access for a specific entity type.

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_access()

hook_entity_create_access()

Related topics

5 functions implement hook_ENTITY_TYPE_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().
entity_test_entity_test_create_access in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_create_access() for 'entity_test'.
media_library_test_media_create_access in core/modules/media_library/tests/modules/media_library_test/media_library_test.module
Implements hook_ENTITY_TYPE_create_access().
user_access_test_entity_create_access in core/modules/user/tests/modules/user_access_test/user_access_test.module
Implements hook_entity_create_access().
workspaces_entity_create_access in core/modules/workspaces/workspaces.module
Implements hook_entity_create_access().

File

core/lib/Drupal/Core/Entity/entity.api.php, line 794
Hooks and documentation related to entities.

Code

function hook_ENTITY_TYPE_create_access(\Drupal\Core\Session\AccountInterface $account, array $context, $entity_bundle) {

  // No opinion.
  return AccessResult::neutral();
}