You are here

function vbo_hide_plugin_display_extender::option_definition in VBO Hide 7

Returns setting options.

Overrides views_object::option_definition

File

views/vbo_hide_plugin_display_extender.inc, line 14
Views plugin handler. Contains all relevant options and related logic. Implements the Views Form API.

Class

vbo_hide_plugin_display_extender
@file Views plugin handler. Contains all relevant options and related logic. Implements the Views Form API.

Code

function option_definition() {

  // Call parent method so that default functionality not override.
  $options = parent::option_definition();
  $options['vbo_hide'] = array(
    'default' => '',
  );
  return $options;
}