You are here

public static function Link::fromTextAndUrl in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::fromTextAndUrl()

Creates a Link object from a given Url object.

Parameters

string|array|\Drupal\Component\Render\MarkupInterface $text: The link text for the anchor tag as a translated string or render array.

\Drupal\Core\Url $url: The Url to create the link for.

Return value

static

10 calls to Link::fromTextAndUrl()
BookController::adminOverview in core/modules/book/src/Controller/BookController.php
Returns an administrative overview of all books.
BookController::bookRender in core/modules/book/src/Controller/BookController.php
Prints a listing of all books.
claro_preprocess_admin_block_content in core/themes/claro/claro.theme
Implements template_preprocess_HOOK() for admin_block.
claro_preprocess_block_content_add_list in core/themes/claro/claro.theme
Implements template_preprocess_HOOK() for block_content_add_list.
claro_preprocess_node_add_list in core/themes/claro/claro.theme
Implements template_preprocess_HOOK() for node_add_list.

... See full list

File

core/lib/Drupal/Core/Link.php, line 76

Class

Link
Defines an object that holds information about a link.

Namespace

Drupal\Core

Code

public static function fromTextAndUrl($text, Url $url) {
  return new static($text, $url);
}