function theme_emvideo_video_duration in Embedded Media Field 6.2
Same name and namespace in other branches
- 6.3 contrib/emvideo/emvideo.theme.inc \theme_emvideo_video_duration()
- 6 contrib/emvideo/emvideo.theme.inc \theme_emvideo_video_duration()
File
- contrib/
emvideo/ emvideo.theme.inc, line 199 - This defines the various theme functions for Embedded Video Field (emvideo).
Code
function theme_emvideo_video_duration($field, $item, $formatter, $node, $options = array()) {
return '<div class="emvideo-duration">' . _emvideo_seconds_to_time($item['duration']) . '</div>';
}