function Resource::link
Same name in other branches
- 9 core/modules/media/src/OEmbed/Resource.php \Drupal\media\OEmbed\Resource::link()
- 8.9.x core/modules/media/src/OEmbed/Resource.php \Drupal\media\OEmbed\Resource::link()
- 11.x core/modules/media/src/OEmbed/Resource.php \Drupal\media\OEmbed\Resource::link()
Creates a link resource.
Parameters
string $url: (optional) The URL of the resource.
\Drupal\media\OEmbed\Provider $provider: (optional) The resource provider.
string $title: (optional) A text title, describing the resource.
string $author_name: (optional) The name of the author/owner of the resource.
string $author_url: (optional) A URL for the author/owner of the resource.
int $cache_age: (optional) The suggested cache lifetime for this resource, in seconds.
string $thumbnail_url: (optional) A URL to a thumbnail image representing the resource. If this parameter is present, $thumbnail_width and $thumbnail_height must also be present.
int $thumbnail_width: (optional) The width of the thumbnail, in pixels. If this parameter is present, $thumbnail_url and $thumbnail_height must also be present.
int $thumbnail_height: (optional) The height of the thumbnail, in pixels. If this parameter is present, $thumbnail_url and $thumbnail_width must also be present.
Return value
static
2 calls to Resource::link()
- Resource::photo in core/
modules/ media/ src/ OEmbed/ Resource.php - Creates a photo resource.
- ResourceFetcher::createResource in core/
modules/ media/ src/ OEmbed/ ResourceFetcher.php - Creates a Resource object from raw resource data.
File
-
core/
modules/ media/ src/ OEmbed/ Resource.php, line 223
Class
- Resource
- Value object representing an oEmbed resource.
Namespace
Drupal\media\OEmbedCode
public static function link($url = NULL, ?Provider $provider = NULL, $title = NULL, $author_name = NULL, $author_url = NULL, $cache_age = NULL, $thumbnail_url = NULL, $thumbnail_width = NULL, $thumbnail_height = NULL) {
$resource = new static($provider, $title, $author_name, $author_url, $cache_age, $thumbnail_url, $thumbnail_width, $thumbnail_height);
$resource->type = self::TYPE_LINK;
$resource->url = $url;
return $resource;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.