You are here

function video_views_handler_field_playtime_seconds::option_definition in Video 6.2

Define options available for this field.

File

views/video_views_handler_field_playtime_seconds.inc, line 20

Class

video_views_handler_field_playtime_seconds
Field handler to display the play length of the video.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['time_type'] = array(
    'default' => 'hms',
  );
  return $options;
}