You are here

public function YouTubePlaylist::getRemoteThumbnailUrl in Video Embed Field 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/video_embed_field/Provider/YouTubePlaylist.php \Drupal\video_embed_field\Plugin\video_embed_field\Provider\YouTubePlaylist::getRemoteThumbnailUrl()

Get the URL of the remote thumbnail.

This is used to download the remote thumbnail and place it on the local file system so that it can be rendered with image styles. This is only called if no existing file is found for the thumbnail and should not be called unnecessarily, as it might query APIs for video thumbnail information.

Return value

string The URL to the remote thumbnail file.

Overrides ProviderPluginInterface::getRemoteThumbnailUrl

File

src/Plugin/video_embed_field/Provider/YouTubePlaylist.php, line 40

Class

YouTubePlaylist
A YouTube playlist video provider.

Namespace

Drupal\video_embed_field\Plugin\video_embed_field\Provider

Code

public function getRemoteThumbnailUrl() {
  return sprintf('http://img.youtube.com/vi/%s/hqdefault.jpg', static::getUrlComponent($this
    ->getInput(), 'video_id'));
}