“Drupal 8 Link Render Array” Código de respuesta

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')
];
Gleaming Gannet

Enlace de tipo Drupal 8

use Drupal\Core\Url;

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

Respuestas similares a “Drupal 8 Link Render Array”

Preguntas similares a “Drupal 8 Link Render Array”

Más respuestas relacionadas con “Drupal 8 Link Render Array” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código