public function EventTypeRuleDeleteAll::getCancelUrl in RNG - Events and Registrations 8
Same name and namespace in other branches
- 8.2 src/Form/EventTypeRuleDeleteAll.php \Drupal\rng\Form\EventTypeRuleDeleteAll::getCancelUrl()
- 3.x src/Form/EventTypeRuleDeleteAll.php \Drupal\rng\Form\EventTypeRuleDeleteAll::getCancelUrl()
Returns the route to go to if the user cancels the action.
Return value
\Drupal\Core\Url A URL object.
Overrides ConfirmFormInterface::getCancelUrl
1 call to EventTypeRuleDeleteAll::getCancelUrl()
- EventTypeRuleDeleteAll::submitForm in src/
Form/ EventTypeRuleDeleteAll.php - Form submission handler.
File
- src/
Form/ EventTypeRuleDeleteAll.php, line 94
Class
- EventTypeRuleDeleteAll
- Form controller to delete all custom rules for an event type.
Namespace
Drupal\rng\FormCode
public function getCancelUrl() {
return Url::fromRoute('entity.event_type.access_defaults', [
'event_type' => $this->eventType
->id(),
]);
}