How to render a Youtube thumbnail in a template in Drupal 7(如何在 Drupal 7 的模板中渲染 Youtube 缩略图)
问题描述
我正在使用以下模块:
- 媒体
- media_youtube
- 样式
并且想要在模板 (.tpl) 中呈现 Youtube 视频的缩略图.我应该使用哪个主题功能以及什么参数?
and would like to render a thumbnail of a Youtube video in a template (.tpl). Which theme function should I use and with what params?
我最好的问题是:
$my_media['style_name'] = 'unlinked_thumbnail';
print theme('file_styles',$my_media);
其中 $my_media 是一个包含 fid、uri、filename、filemime 等的数组
where $my_media is an array containing fid,uri,filename,filemime etc.
由于我对 Drupal 非常陌生,所以我试图理解模块源代码的所有尝试都失败了.我觉得我已经尝试了 youtube 和样式模块中定义的所有可能的样式名称组合,但没有得到任何输出.
Since i'm very new to Drupal, all my attempts to make sense of the modules source code have failed. I feel like I have tried all possible combinations of style names defined in the youtube and styles module without getting any output.
使用
print theme('media_youtube_video',$my_media);
你们是怎么做到的?
推荐答案
在 media_youtube
模块代码中挖掘,有一个函数可以在 includes/media_youtube.formatters 中为您构建此代码.inc
称为 media_youtube_file_formatter_image_view()
.您可以使用如下代码来渲染缩略图:
Digging around in the media_youtube
module code there's a function that will build this up for you in includes/media_youtube.formatters.inc
called media_youtube_file_formatter_image_view()
. You can use code like the following to render the thumbnail image:
// Make sure the correct include file is loaded
module_load_include('inc', 'media_youtube', '/includes/media_youtube.formatters.inc');
// Load the file
$file = file_load($my_media['fid']);
// Set up the settings array with your image style
$display['settings'] = array('image_style' => 'unlinked_thumbnail');
// Get the render array for the thumbnail image
$image_render_array = media_youtube_file_formatter_image_view($file, $display, LANGUAGE_NONE);
// Render it
print render($image_render_array);
这篇关于如何在 Drupal 7 的模板中渲染 Youtube 缩略图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Drupal 7 的模板中渲染 Youtube 缩略图
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01