Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Link.php \Drupal\Core\Link::fromTextAndUrl()
  2. 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. Strings will be sanitized automatically. If you need to output HTML in the link text, use a render array or an already sanitized string such as the output of \Drupal\Component\Utility\Xss::filter() or \Drupal\Component\Render\FormattableMarkup.

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

Return value

static

67 calls to Link::fromTextAndUrl()
block_help in core/modules/block/block.module
Implements hook_help().
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.
BookMultilingualTest::assertNodeLinkIsCorrectlyTranslated in core/modules/book/tests/src/Kernel/BookMultilingualTest.php
Asserts a node link is correctly translated.
BookMultilingualTest::testMultilingualBookBreadcrumbBuilder in core/modules/book/tests/src/Kernel/BookMultilingualTest.php
Tests various book breadcrumb builder methods return correct translations.

... See full list

File

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

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);
}