bat-8.x-1.x-dev/modules/bat_event/src/EventAccessControlHandler.php

modules/bat_event/src/EventAccessControlHandler.php
<?php

namespace Drupal\bat_event;

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

/**
 * Access controller for the Event entity.
 *
 * @see \Drupal\bat_event\Entity\Event.
 */
class EventAccessControlHandler extends EntityAccessControlHandler {

  /**
   * {@inheritdoc}
   */
  protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {

    switch ($operation) {
      case 'view':
        return AccessResult::allowedIfHasPermission($account, 'view event entities');

      case 'update':
        return AccessResult::allowedIfHasPermission($account, 'edit event entities');

      case 'delete':
        return AccessResult::allowedIfHasPermission($account, 'delete event entities');
    }

    return AccessResult::allowed();
  }

  /**
   * {@inheritdoc}
   */
  protected function checkCreateAccess(AccountInterface $account, array $context, $event_type = NULL) {
    return bat_event_access(bat_event_create(['type' => $event_type]), 'create', $account);
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc