You are here

function image_handler_argument_image_node_image_size::options_form in Image 6

Same name and namespace in other branches
  1. 7 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.

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']);
}