You are here

function image_handler_relationship_node_image_file::option_definition in Image 6

Same name and namespace in other branches
  1. 7 views/image_handler_relationship_node_image_file.inc \image_handler_relationship_node_image_file::option_definition()

File

views/image_handler_relationship_node_image_file.inc, line 10
Views relationship handler for image size filter.

Class

image_handler_relationship_node_image_file
@file Views relationship handler for image size filter.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['image_size'] = array(
    'default' => IMAGE_THUMBNAIL,
  );
  return $options;
}