You are here

function emfield_handler_field_status::options_form in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6.2 includes/views/handlers/emfield_handler_field_status.inc \emfield_handler_field_status::options_form()

Provide 'group multiple values' option.

File

includes/views/handlers/emfield_handler_field_status.inc, line 17
Field handler for emfield providers.

Class

emfield_handler_field_status
@file Field handler for emfield providers.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['format']['#options'] = array(
    'status' => t('Status'),
  );
}