Answers for "drupal 8 link render array"

1

drupal 8 link render array

$url = Url::fromRoute('entity.node.edit_form', array('node' => NID));
$link = [
  '#type' => 'link',
  '#url' => $url,
  '#title' => t('This link was rendered')
];
Posted by: Guest on October-02-2020
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language