You are here

function views_plugin_argument_default_headerimage::get_argument in Header image 7

Return the default argument.

This needs to be overridden by every default argument handler to properly do what is needed.

Overrides views_plugin_argument_default::get_argument

File

views/views_plugin_argument_default_headerimage.inc, line 32
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 get_argument() {
  return headerimage_select_node($this->options['block']);
}