Answers for "Drupal 8 Link"

0

drupal 8 type link

use Drupal\Core\Url;

$rendable_link = [
  '#type' => 'link',
  '#title' => $this->t('Link title'),
  '#url' => Url::fromRoute('YOUR_ROUTE'),
];
Posted by: Guest on October-15-2020
0

drupal 8 HTML in type link

$link = [
  '#type' => 'link',
  '#title' => [
      '#type' => 'inline_template',
      '#template' => '{{ title }} <span class="icon-right-arrow"></span>',
      '#context' => [
        'title' => $title
      ],
  ],
  '#url' => Url::fromRoute('user.pass'),
];
Posted by: Guest on September-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language