function Link::fromTextAndUrl
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Link.php \Drupal\Core\Link::fromTextAndUrl()
- 10 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::fromTextAndUrl()
- 11.x 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
13 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.
File
-
core/
lib/ Drupal/ Core/ Link.php, line 93
Class
- Link
- Defines an object that holds information about a link.
Namespace
Drupal\CoreCode
public static function fromTextAndUrl($text, Url $url) {
return new static($text, $url);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.