protected function StateListAccessControlHandler::checkAccess in Country, State and City Fields 8
Link the activities to the permissions. checkAccess() is called with the $operation as defined in the routing.yml file.
Overrides EntityAccessControlHandler::checkAccess
File
- src/
StateListAccessControlHandler.php, line 21
Class
- StateListAccessControlHandler
- Access controller for the statelist entity.
Namespace
Drupal\country_state_cityCode
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
// Check the admin_permission as defined in your @ContentEntityType
// annotation.
$admin_permission = $this->entityType
->getAdminPermission();
if ($account
->hasPermission($admin_permission)) {
return AccessResult::allowed();
}
switch ($operation) {
case 'view':
return AccessResult::allowedIfHasPermission($account, 'view statelist entity');
case 'update':
return AccessResult::allowedIfHasPermission($account, 'edit statelist entity');
case 'delete':
return AccessResult::allowedIfHasPermission($account, 'delete statelist entity');
}
return AccessResult::neutral();
}