You are here

function views_plugin_argument_default_headerimage::option_definition in Header image 7

Retrieve the options when this is a new access control plugin.

Overrides views_plugin_argument_default::option_definition

File

views/views_plugin_argument_default_headerimage.inc, line 13
Contains the Header image argument default plugin.

Class

views_plugin_argument_default_headerimage
This class provides an argument default plugin that returns the header image for the page it is displayed on.

Code

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