class EventRuleResetCheck in RNG - Events and Registrations 8.2
Same name and namespace in other branches
- 8 src/Access/EventRuleResetCheck.php \Drupal\rng\Access\EventRuleResetCheck
- 3.x src/Access/EventRuleResetCheck.php \Drupal\rng\Access\EventRuleResetCheck
Checks that an entity is an event type.
Hierarchy
- class \Drupal\rng\Access\EventRuleResetCheck implements AccessInterface
Expanded class hierarchy of EventRuleResetCheck
1 string reference to 'EventRuleResetCheck'
1 service uses EventRuleResetCheck
File
- src/
Access/ EventRuleResetCheck.php, line 16
Namespace
Drupal\rng\AccessView source
class EventRuleResetCheck implements AccessInterface {
/**
* The RNG event manager.
*
* @var \Drupal\rng\EventManagerInterface
*/
protected $eventManager;
/**
* Constructs a new EventRuleResetCheck object.
*
* @param \Drupal\rng\EventManagerInterface $event_manager
* The RNG event manager.
*/
public function __construct(EventManagerInterface $event_manager) {
$this->eventManager = $event_manager;
}
/**
* Checks that an entity is an event type.
*/
public function access(Route $route, RouteMatchInterface $route_match, AccountInterface $account) {
$access = AccessResult::neutral();
if ($event = $route
->getDefault('event')) {
$event = $route_match
->getParameter($event);
if ($event instanceof EntityInterface) {
$event_type = $this->eventManager
->eventType($event
->getEntityTypeId(), $event
->bundle());
if ($event_type) {
$event_meta = $this->eventManager
->getMeta($event);
// Allow custom rules |OR|
// If not default rules, then allow event manager to reset back.
if ($event_type
->getAllowCustomRules() || !$event_meta
->isDefaultRules('rng_event.register')) {
$access = AccessResult::allowed();
}
$access
->addCacheableDependency($event_type);
}
}
$access
->addCacheableDependency($event);
}
return $access;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EventRuleResetCheck:: |
protected | property | The RNG event manager. | |
EventRuleResetCheck:: |
public | function | Checks that an entity is an event type. | |
EventRuleResetCheck:: |
public | function | Constructs a new EventRuleResetCheck object. |