function DeleteForm::getCancelUrl

Same name in this branch
  1. 11.x core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getCancelUrl()
Same name and namespace in other branches
  1. 9 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getCancelUrl()
  2. 9 core/modules/comment/src/Form/DeleteForm.php \Drupal\comment\Form\DeleteForm::getCancelUrl()
  3. 8.9.x core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getCancelUrl()
  4. 8.9.x core/modules/comment/src/Form/DeleteForm.php \Drupal\comment\Form\DeleteForm::getCancelUrl()
  5. 10 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getCancelUrl()
  6. 10 core/modules/comment/src/Form/DeleteForm.php \Drupal\comment\Form\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.