public function GoogleDrive::getRemoteThumbnailUrl in Video Embed Google Drive 8
File
- src/
Plugin/ video_embed_field/ Provider/ GoogleDrive.php, line 51
Class
- GoogleDrive
- A Google Drive provider plugin for video embed field.
Namespace
Drupal\video_embed_google_drive\Plugin\video_embed_field\ProviderCode
public function getRemoteThumbnailUrl() {
$url = 'https://drive.google.com/thumbnail?authuser=0&sz=w320&id=%s';
return sprintf($url, $this
->getVideoId());
}