function Link::__construct

Same name in this branch
  1. 8.9.x core/modules/jsonapi/src/JsonApiResource/Link.php \Drupal\jsonapi\JsonApiResource\Link::__construct()
Same name in other branches
  1. 9 core/modules/jsonapi/src/JsonApiResource/Link.php \Drupal\jsonapi\JsonApiResource\Link::__construct()
  2. 9 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::__construct()
  3. 10 core/modules/jsonapi/src/JsonApiResource/Link.php \Drupal\jsonapi\JsonApiResource\Link::__construct()
  4. 10 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::__construct()
  5. 11.x core/modules/jsonapi/src/JsonApiResource/Link.php \Drupal\jsonapi\JsonApiResource\Link::__construct()
  6. 11.x 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 42

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.