“Drupal 8 Link renderize Array” Respostas de código

Drupal 8 Link renderize Array

$url = Url::fromRoute('entity.node.edit_form', array('node' => NID));
$link = [
  '#type' => 'link',
  '#url' => $url,
  '#title' => t('This link was rendered')
];
Gleaming Gannet

Link do tipo Drupal 8

use Drupal\Core\Url;

$rendable_link = [
  '#type' => 'link',
  '#title' => $this->t('Link title'),
  '#url' => Url::fromRoute('YOUR_ROUTE'),
];
Gleaming Gannet

Respostas semelhantes a “Drupal 8 Link renderize Array”

Perguntas semelhantes a “Drupal 8 Link renderize Array”

Mais respostas relacionadas para “Drupal 8 Link renderize Array” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código