function DeleteForm::getCancelUrl

Overrides ContentEntityDeleteForm::getCancelUrl

1 call to DeleteForm::getCancelUrl()
DeleteForm::getRedirectUrl in core/modules/comment/src/Form/DeleteForm.php
Returns the URL where the user should be redirected after deletion.

File

core/modules/comment/src/Form/DeleteForm.php, line 17

Class

DeleteForm
Provides the comment delete confirmation form.

Namespace

Drupal\comment\Form

Code

public function getCancelUrl() {
  // Point to the entity of which this comment is a reply.
  return $this->entity
    ->get('entity_id')->entity
    ->toUrl();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.