You are here

public function Link::__construct in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/symfony/dom-crawler/Link.php \Symfony\Component\DomCrawler\Link::__construct()
  2. 8.0 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::__construct()
Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::__construct()

Constructs a new Link object.

Parameters

string $text: The text of the link.

\Drupal\Core\Url $url: The url object.

File

core/lib/Drupal/Core/Link.php, line 45
Contains \Drupal\Core\Link.

Class

Link
Defines an object that holds information about a link.

Namespace

Drupal\Core

Code

public function __construct($text, Url $url) {
  $this->text = $text;
  $this->url = $url;
}