You are here

protected function views_flag_refresh_plugin_display_extender::add_options in Views Flag Refresh 7

List of new options added by plugin.

2 calls to views_flag_refresh_plugin_display_extender::add_options()
views_flag_refresh_plugin_display_extender::options_definition_alter in ./views_flag_refresh_plugin_display_extender.inc
Provide a form to edit options for this plugin.
views_flag_refresh_plugin_display_extender::option_definition in ./views_flag_refresh_plugin_display_extender.inc
Provide a form to edit options for this plugin.

File

./views_flag_refresh_plugin_display_extender.inc, line 18
Views field view field handler class.

Class

views_flag_refresh_plugin_display_extender
This plugin adds additional settings to the Views AJAX options.

Code

protected function add_options(&$options = array()) {
  $options['use_ajax_flags'] = array(
    'default' => FALSE,
  );
  $options['use_ajax_flags_noscrolltop'] = array(
    'default' => 0,
  );
  $options['use_ajax_flags_widget'] = array(
    'default' => 'default',
  );
}