You are here

protected function LocalTaskItemAccessController::checkAccess in Translation Management Tool 8

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

translators/tmgmt_local/src/Entity/Controller/LocalTaskItemAccessController.php, line 20

Class

LocalTaskItemAccessController
Access control handler for the task item entity.

Namespace

Drupal\tmgmt_local\Entity\Controller

Code

protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
  if ($operation == 'view' || $operation == 'update') {
    if ($account
      ->hasPermission('administer tmgmt') || $account
      ->hasPermission('administer translation tasks')) {

      // Administrators can do everything.
      return AccessResult::allowed()
        ->cachePerPermissions();
    }
    return AccessResult::allowedIf($entity
      ->getTask()->tuid->target_id == $account
      ->id() && $account
      ->hasPermission('provide translation services'));
  }
  return $entity
    ->getTask()
    ->access($operation, $account, TRUE);
}