You are here

function emvideo_handler_field_duration::options_form in Embedded Media Field 6

Same name and namespace in other branches
  1. 6.3 contrib/emvideo/includes/views/handlers/emvideo_handler_field_duration.inc \emvideo_handler_field_duration::options_form()
  2. 6.2 contrib/emvideo/includes/views/handlers/emvideo_handler_field_duration.inc \emvideo_handler_field_duration::options_form()

Provide 'group multiple values' option.

File

contrib/emvideo/includes/views/handlers/emvideo_handler_field_duration.inc, line 17
Field handler for emvideo providers.

Class

emvideo_handler_field_duration
@file Field handler for emvideo providers.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['format']['#options'] = array(
    'duration_time' => t('Duration (mm:ss)'),
    'duration_seconds' => t('Duration (seconds)'),
  );
}