protected function EntityDeleteFormTrait::getRedirectUrl

protected EntityDeleteFormTrait::getRedirectUrl()

Returns the URL where the user should be redirected after deletion.

Return value

\Drupal\Core\Url The redirect URL.

File

core/lib/Drupal/Core/Entity/EntityDeleteFormTrait.php, line 95

Class

EntityDeleteFormTrait
Provides a trait for an entity deletion form.

Namespace

Drupal\Core\Entity

Code

protected function getRedirectUrl() {
  $entity = $this->getEntity();
  if ($entity->hasLinkTemplate('collection')) {
    // If available, return the collection URL.
    return $entity->urlInfo('collection');
  }
  else {
    // Otherwise fall back to the front page.
    return Url::fromRoute('<front>');
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!EntityDeleteFormTrait.php/function/EntityDeleteFormTrait::getRedirectUrl/8.1.x