public function ClusterDeleteForm::getCancelUrl in Elasticsearch Connector 8
Same name and namespace in other branches
- 8.7 src/Form/ClusterDeleteForm.php \Drupal\elasticsearch_connector\Form\ClusterDeleteForm::getCancelUrl()
- 8.2 src/Form/ClusterDeleteForm.php \Drupal\elasticsearch_connector\Form\ClusterDeleteForm::getCancelUrl()
- 8.5 src/Form/ClusterDeleteForm.php \Drupal\elasticsearch_connector\Form\ClusterDeleteForm::getCancelUrl()
- 8.6 src/Form/ClusterDeleteForm.php \Drupal\elasticsearch_connector\Form\ClusterDeleteForm::getCancelUrl()
Returns the route to go to if the user cancels the action.
Return value
\Drupal\Core\Url A URL object.
Overrides ConfirmFormInterface::getCancelUrl
File
- src/
Form/ ClusterDeleteForm.php, line 63 - Contains \Drupal\elasticsearch_connector\Form\ClusterDeleteForm.
Class
- ClusterDeleteForm
- Defines a confirmation form for deletion of a custom menu.
Namespace
Drupal\elasticsearch_connector\FormCode
public function getCancelUrl() {
return new Url('elasticsearch_connector.clusters', array(
'elasticsearch_cluster' => $this->entity
->id(),
));
}