Oto kilka przykładów tworzenia łączy w Drupal 8. Zauważ, że $ this-> t ('some text') jest dostępny w blokach rozszerzających BlockBase. Jeśli skopiujesz je do innej klasy, która go nie ma lub użyjesz ich w pliku .module, być może będziesz musiał zmienić to na t () 1 .
Podstawowe łącze do węzła:
$node = Node::load($nid);
$build['node_link'] = $node->toLink()->toRenderable();
Spowoduje to utworzenie tablicy renderowania takiej:
$link = [
'#type' => 'link',
'#url' => $url_object,
'#title' => 'Title of Node',
];
Możesz utworzyć tablicę renderującą bez ładowania węzła w ten sposób:
$url_object = Url::fromRoute('entity.node.canonical', ['node' => $nid]);
$link = [
'#type' => 'link',
'#url' => $url_object,
'#title' => $this->t('Read More'),
];
Lub używając podstawowej klasy Link:
$url = Url::fromRoute('entity.node.canonical', ['node' => $nid]);
$link = Link::fromTextAndUrl($this->t('Read more'), $url);
$build['read_more'] = $link->toRenderable();
Jeśli chcesz użyć znaczników w tekście linku, nie możesz po prostu wstawić łańcucha. Musisz użyć elementu tablicy renderowania:
$url = Url::fromRoute('entity.node.canonical', ['node' => $nid]);
$link_text = [
'#type' => 'html_tag',
'#tag' => 'span',
'#value' => $this->t('Load More'),
];
$link = Link::fromTextAndUrl($link_text, $url);
Aby utworzyć bezwzględny link, dodaj tę opcję do adresu URL, a nie do łącza:
$url = Url::fromRoute('entity.node.canonical', ['node' => $nid], ['absolute' => TRUE]);
$link = Link::fromTextAndUrl($this->t('Read more'), $url);
$build['read_more'] = $link->toRenderable();
Aby dodać klasę do linku, musisz również dodać to do adresu URL, a nie linku:
$options = [
'attributes' => [
'class' => [
'read-more-link',
],
],
];
$url = Url::fromRoute('entity.node.canonical', ['node' => $nid], $options);
$link = Link::fromTextAndUrl($this->t('Read more'), $url);
$build['read_more'] = $link->toRenderable();
Aby dodać ciąg zapytania do linku, musisz to również zrobić w adresie URL, a nie w linku:
$options = [
'query' => [
'car' => 'BMW',
'model' => 'mini-cooper',
],
'attributes' => [
'class' => [
'read-more-link',
],
],
];
$url = Url::fromRoute('entity.node.canonical', ['node' => $nid], $options);
$link = Link::fromTextAndUrl($this->t('Read more'), $url);
$build['read_more'] = $link->toRenderable();
Aby ustawić link, aby otwierał się w nowym oknie z target = _blank:
$options = [
'attributes' => [
'target' => '_blank'
],
];
$url = Url::fromRoute('entity.media.edit_form', ['media' => $entity->id()], $options);
$link = Link::fromTextAndUrl(t('Edit'), $url);
$form['entity']['edit_link'] = $link->toRenderable();
Oto link do strony z terminem taksonomicznym:
$url = Url::fromRoute('entity.taxonomy_term.canonical', ['taxonomy_term' => $tid]);
$link = Link::fromTextAndUrl($this->t('Read more'), $url);
$build['read_more'] = $link->toRenderable();
Oto link do strony edycji węzła:
$url = Url::fromRoute('entity.node.edit_form', ['node' => $nid]);
$link = Link::fromTextAndUrl($this->t('Edit'), $url);
$build['read_more'] = $link->toRenderable();
Aby utworzyć zewnętrzny link:
$url = Url::fromUri('http://www.example.com/');
$link = Link::fromTextAndUrl($this->t('Vist this example site'), $url);
$build['external_link'] = $link->toRenderable();
Link do strony głównej:
$url = Url::fromRoute('<front>');
$link = Link::fromTextAndUrl($this->t('Home'), $url);
$build['homepage_link'] = $link->toRenderable();
Zauważ, że na każdym z tych obiektów URL możesz uzyskać adres URL jako ciąg znaków, wywołując:
$url->toString();
Na przykład:
$url_string = Url::fromRoute('<front>')->toString();