function theme_asset_embed_thumbnail in Asset 6
Same name and namespace in other branches
- 5 asset_embed/asset_embed.module \theme_asset_embed_thumbnail()
1 theme call to theme_asset_embed_thumbnail()
- asset_embed_asset_formatter in asset_embed/
asset_embed.module
File
- asset_embed/
inc/ asset_embed.themes.inc, line 2
Code
function theme_asset_embed_thumbnail($asset) {
$id = $asset->embed['id'];
$url = "http://img.youtube.com/vi/{$id}/2.jpg";
$alt = $title = $asset->title;
$img = '<img src="' . check_url($url) . '"' . drupal_attributes(array(
'alt' => $alt,
'title' => $title,
)) . ' />';
return $img;
}