public function OAuthDeleteConsumerForm::getCancelUrl in OAuth 1.0 8
Same name and namespace in other branches
- 8.2 src/Form/OAuthDeleteConsumerForm.php \Drupal\oauth\Form\OAuthDeleteConsumerForm::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/ OAuthDeleteConsumerForm.php, line 73 - Contains \Drupal\oauth\Form\OAuthDeleteConsumerForm.
Class
- OAuthDeleteConsumerForm
- Provides an oauth_consumer deletion confirmation form.
Namespace
Drupal\oauth\FormCode
public function getCancelUrl() {
return new Url('oauth.user_consumer', [
'user' => \Drupal::currentUser()
->id(),
]);
}