BookingAccessControlHandler.php in Booking and Availability Management Tools for Drupal 8
File
modules/bat_booking/src/BookingAccessControlHandler.php
View source
<?php
namespace Drupal\bat_booking;
use Drupal\Core\Entity\EntityAccessControlHandler;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Access\AccessResult;
class BookingAccessControlHandler extends EntityAccessControlHandler {
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
switch ($operation) {
case 'view':
return AccessResult::allowedIfHasPermission($account, 'view booking entities');
case 'update':
return AccessResult::allowedIfHasPermission($account, 'edit booking entities');
case 'delete':
return AccessResult::allowedIfHasPermission($account, 'delete booking entities');
}
return AccessResult::allowed();
}
protected function checkCreateAccess(AccountInterface $account, array $context, $type_bundle = NULL) {
return bat_booking_access(bat_booking_create([
'type' => $type_bundle,
]), 'create', $account);
}
}