You are here

function image_handler_argument_image_node_image_size::options_form in Image 7

Same name and namespace in other branches
  1. 6 views/image_handler_argument_image_node_image_size.inc \image_handler_argument_image_node_image_size::options_form()

Change the argument's options for more image specific options.

Overrides views_handler_argument_string::options_form

File

views/image_handler_argument_image_node_image_size.inc, line 15
Provide an argument to set the image size of an Image node image field.

Class

image_handler_argument_image_node_image_size
@file

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);

  // Wildcard makes no sense for this argument: remove it.
  unset($form['wildcard']);
  unset($form['wildcard_substitution']);
}