You are here

public function PrivateMessageThreadDeleteForm::getCancelUrl in Private Message 8.2

Same name and namespace in other branches
  1. 8 src/Form/PrivateMessageThreadDeleteForm.php \Drupal\private_message\Form\PrivateMessageThreadDeleteForm::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/PrivateMessageThreadDeleteForm.php, line 33

Class

PrivateMessageThreadDeleteForm
Form definition for the private message delete form.

Namespace

Drupal\private_message\Form

Code

public function getCancelUrl() {
  return Url::fromRoute('entity.private_message_thread.canonical', [
    'private_message_thread' => $this
      ->getEntity()
      ->id(),
  ]);
}