protected function TimeTrackingAccessControlHandler::checkAccess in Drupal PM (Project Management) 4.x
Performs access checks.
This method is supposed to be overwritten by extending classes that do their own custom access checking.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity for which to check access.
string $operation: The entity operation. Usually one of 'view', 'view label', 'update' or 'delete'.
\Drupal\Core\Session\AccountInterface $account: The user for which to check access.
Return value
\Drupal\Core\Access\AccessResultInterface The access result.
Overrides EntityAccessControlHandler::checkAccess
File
- modules/
pm_timetracking/ src/ TimeTrackingAccessControlHandler.php, line 20
Class
- TimeTrackingAccessControlHandler
- Access controller for the Time tracking entity.
Namespace
Drupal\pm_timetrackingCode
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
/** @var \Drupal\pm_timetracking\Entity\TimeTrackingInterface $entity */
switch ($operation) {
case 'view':
$permission = $this
->checkOwn($entity, $operation, $account);
if (!empty($permission)) {
return AccessResult::allowed();
}
return AccessResult::allowedIfHasPermission($account, 'view time tracking entities');
case 'update':
$permission = $this
->checkOwn($entity, $operation, $account);
if (!empty($permission)) {
return AccessResult::allowed();
}
return AccessResult::allowedIfHasPermission($account, 'edit time tracking entities');
case 'delete':
$permission = $this
->checkOwn($entity, $operation, $account);
if (!empty($permission)) {
return AccessResult::allowed();
}
return AccessResult::allowedIfHasPermission($account, 'delete time tracking entities');
}
// Unknown operation, no opinion.
return AccessResult::neutral();
}