Skip to content

Instantly share code, notes, and snippets.

View rmontero's full-sized avatar
🏠
Winning

Roberto Montero rmontero

🏠
Winning
View GitHub Profile
@rmontero
rmontero / 1.dynamic-links-action.md
Created June 24, 2020 16:42 — forked from vijaycs85/1.dynamic-links-action.md
Drupal 8 snippets for different functionality
@mgalang
mgalang / d8_snippets.md
Last active June 17, 2022 13:58
Drupal 8 snippets

Create link from text and url

$url = Url::fromRoute($route_name);
$link = Link::fromTextAndUrl($text, $url);

Create link from route

$link = Link::createFromRoute('Link Text', 'route_name')->getUrl();