You are here

function views_handler_field_file_image_style_url::options_form in CKEditor Widgets 7

Provide file_view_mode option for to file display.

Overrides views_handler_field::options_form

File

views/views_handler_field_file_image_style_url.inc, line 23
Definition of views_handler_field_file_image_style.

Class

views_handler_field_file_image_style_url
Field handler to render a file with a view mode using file_view_file().

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $image_styles = image_style_options(FALSE, PASS_THROUGH);
  $element['image_style'] = array(
    '#title' => t('Thumbnail image style'),
    '#type' => 'select',
    '#default_value' => $settings['image_style'],
    '#empty_option' => t('None (do not include this)'),
    '#options' => $image_styles,
    '#description' => t('This is only relevant if a Thumbnail image field is selected above.'),
  );
  $form['image_style'] = array(
    '#title' => t('Image style'),
    '#description' => t('Select the image style of which to generate the url.'),
    '#type' => 'select',
    '#default_value' => $this->options['image_style'],
    '#options' => $image_styles,
  );
}