You are here

function emvideo_seconds_to_time in Embedded Media Field 6.2

Same name and namespace in other branches
  1. 6.3 contrib/emvideo/emvideo.module \emvideo_seconds_to_time()
  2. 6 contrib/emvideo/emvideo.module \emvideo_seconds_to_time()
2 calls to emvideo_seconds_to_time()
emvideo_handler_argument_duration::title in contrib/emvideo/includes/views/handlers/emvideo_handler_argument_duration.inc
Override the behavior of title().
theme_emvideo_handler_field_duration in contrib/emvideo/includes/views/emvideo.views.inc

File

contrib/emvideo/emvideo.module, line 722
Embedded Video module is a handler for 3rd party video files.

Code

function emvideo_seconds_to_time($time) {
  module_load_include('inc', 'emvideo', 'emvideo.theme');
  return _emvideo_seconds_to_time($time);
}