You are here

ModerationStateAccessControlHandler.php in Workbench Moderation 8

Same filename and directory in other branches
  1. 8.2 src/ModerationStateAccessControlHandler.php

File

src/ModerationStateAccessControlHandler.php
View source
<?php

namespace Drupal\workbench_moderation;

use Drupal\Core\Entity\EntityAccessControlHandler;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Access\AccessResult;

/**
 * Access controller for the Moderation State entity.
 *
 * @see \Drupal\workbench_moderation\Entity\ModerationState.
 */
class ModerationStateAccessControlHandler extends EntityAccessControlHandler {

  /**
   * {@inheritdoc}
   */
  protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
    $admin_access = AccessResult::allowedIfHasPermission($account, 'administer moderation states');

    // Allow view with other permission.
    if ($operation == 'view') {
      return AccessResult::allowedIfHasPermission($account, 'view moderation states')
        ->orIf($admin_access);
    }
    return $admin_access;
  }

  /**
   * {@inheritdoc}
   */
  protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
    return AccessResult::allowedIfHasPermission($account, 'administer moderation states');
  }

}

Classes

Namesort descending Description
ModerationStateAccessControlHandler Access controller for the Moderation State entity.