EventManagementAccessCheck.php in Booking and Availability Management Tools for Drupal 8
File
modules/bat_fullcalendar/src/Access/EventManagementAccessCheck.php
View source
<?php
namespace Drupal\bat_fullcalendar\Access;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Routing\Access\AccessInterface;
use Drupal\Core\Session\AccountInterface;
class EventManagementAccessCheck implements AccessInterface {
protected $entityTypeManager;
public function __construct(EntityTypeManagerInterface $entity_manager) {
$this->entityTypeManager = $entity_manager;
}
public function access(AccountInterface $account, $entity_id, $event_type, $event_id, $start_date, $end_date) {
if ($event_id == 0) {
return bat_event_access(bat_event_create([
'type' => $event_type,
]), 'create', $account);
}
else {
$event = bat_event_load($event_id);
return bat_event_access($event, 'update', $account);
}
}
}