You are here

function views_attach_plugin_display_profile::option_definition in Views attach 6.2

Same name and namespace in other branches
  1. 6 views_attach_plugin_display_profile.inc \views_attach_plugin_display_profile::option_definition()
  2. 7.2 views_attach_plugin_display_profile.inc \views_attach_plugin_display_profile::option_definition()

File

./views_attach_plugin_display_profile.inc, line 7

Class

views_attach_plugin_display_profile
The plugin that handles a user profile.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['weight'] = array(
    'default' => 10,
  );
  $options['category'] = array(
    'default' => NULL,
  );
  $options['argument_mode'] = array(
    'default' => 'uid',
  );
  $options['default_argument'] = array(
    'default' => '',
  );
  return $options;
}