1 views_plugin_argument_default_fixed.inc views_plugin_argument_default_fixed::convert_options(&$options)

Convert options from the older style.

In Views 3, the method of storing default argument options has changed and each plugin now gets its own silo. This method can be used to move arguments from the old style to the new style. See views_plugin_argument_default_fixed for a good example of this method.

Overrides views_plugin_argument_default::convert_options

File

core/modules/views/plugins/views_plugin_argument_default_fixed.inc, line 36
Contains the fixed argument default plugin.

Class

views_plugin_argument_default_fixed
The fixed argument default handler.

Code

function convert_options(&$options) {
  if (!isset($options['argument']) && isset($this->argument->options['default_argument_fixed'])) {
    $options['argument'] = $this->argument->options['default_argument_fixed'];
  }
}