public static function oEmbedThumbnail::preRenderThumbnail in oEmbed 8
File
- src/Element/oEmbedThumbnail.php, line 32
Class
- oEmbedThumbnail
- Class oEmbedThumbnail
@package Drupal\oembed\Render\Element
Namespace
Drupal\oembed\Element
Code
public static function preRenderThumbnail($element) {
if (!empty($element['#printed'])) {
return $element;
}
$embed = $element['#embed'];
if (empty($embed
->getThumbnailUrl())) {
$element['#printed'] = TRUE;
return $element;
}
self::oembed_pre_render_image_helper($element);
return $element;
}