Skip to content

Instantly share code, notes, and snippets.

@init90
Created January 2, 2018 12:52
Show Gist options
  • Save init90/9f4b53a98e57ec1de46ff44d85689899 to your computer and use it in GitHub Desktop.
Save init90/9f4b53a98e57ec1de46ff44d85689899 to your computer and use it in GitHub Desktop.
Drupal 8, create link to current page.
$form['preview']['cancel'] = [
'#type' => 'link',
'#title' => $this->t('Cancel'),
'#url' => \Drupal\Core\Url::fromRoute('<current>'),
'#options' => [
'attributes' => [
'class' => [
'btn',
'btn-primary',
'btn-one-row',
],
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment