Exemple #1
0
 public function getThumbnail(AbstractMediaEntity $entity, $width, $height, $format = 'html', $mode = 'outbound')
 {
     /* @var YouTubeEntity $entity */
     $url = $entity->getYouTubeThumbnailUrl();
     switch ($format) {
         case 'url':
             return $url;
         case 'html':
             return '<img src="' . $url . '" />';
     }
     throw new \LogicException();
 }