You are here

function views_plugin_display_system::option_definition in Administration Views 6

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

File

plugins/views_plugin_display_system.inc, line 26
System display plugin.

Class

views_plugin_display_system
Plugin to handle replacement of existing system paths.

Code

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