class ConfigTestAccessControlHandler

Same name and namespace in other branches
  1. 11.x core/modules/config/tests/config_test/src/ConfigTestAccessControlHandler.php \Drupal\config_test\ConfigTestAccessControlHandler

Defines the access control handler for the config_test entity type.

Hierarchy

Expanded class hierarchy of ConfigTestAccessControlHandler

See also

\Drupal\config_test\Entity\ConfigTest

File

core/modules/config/tests/config_test/src/ConfigTestAccessControlHandler.php, line 15

Namespace

Drupal\config_test
View source
class ConfigTestAccessControlHandler extends EntityAccessControlHandler {
  
  /**
   * {@inheritdoc}
   */
  public function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
    return AccessResult::allowed();
  }
  
  /**
   * {@inheritdoc}
   */
  protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
    return AccessResult::allowed();
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.