public function SavedSearchDeleteConfirmForm::getCancelUrl in Search API Saved Searches 8
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 SavedSearchDeleteConfirmForm::getCancelUrl()
- SavedSearchDeleteConfirmForm::submitForm in src/
Form/ SavedSearchDeleteConfirmForm.php - This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state…
File
- src/
Form/ SavedSearchDeleteConfirmForm.php, line 31
Class
- SavedSearchDeleteConfirmForm
- Provides a form for deleting a saved search.
Namespace
Drupal\search_api_saved_searches\FormCode
public function getCancelUrl() {
if (!empty($this->entity
->getOwnerId())) {
$redirect = '/user/' . $this->entity
->getOwnerId() . '/saved-searches';
return Url::fromUserInput($redirect);
}
else {
return Url::fromUri('internal:/');
}
}