You are here

public function mefibs_display_extender_plugin_blocks::options_definition_alter in MEFIBS - More exposed forms in blocks 7

Define options used by this module.

options_definition_alter() is used instead of option_definition() to allow the options to be exportable.

Overrides views_plugin_display_extender::options_definition_alter

See also

https://drupal.org/node/2128119

File

./mefibs_display_extender_plugin_blocks.inc, line 58
Provides an MEFIBS exposed form plugin for View 3.x.

Class

mefibs_display_extender_plugin_blocks
Display Extender Plugin class.

Code

public function options_definition_alter(&$options) {
  $options['mefibs'] = array(
    'default' => array(
      'blocks' => array(),
    ),
  );
}