You are here

function hook_views_fieldsets_views_field_options_alter in Views fieldsets 7.2

Implements hook_views_fieldsets_views_field_options_alter().

See also

views_fieldsets_fieldset_field_handler::option_definition()

1 invocation of hook_views_fieldsets_views_field_options_alter()
views_fieldsets_fieldset_field_handler::option_definition in views/views_fieldsets_fieldset_field_handler.inc
Information about options for all kinds of purposes will be held here.

File

./views_fieldsets.api.php, line 30

Code

function hook_views_fieldsets_views_field_options_alter(&$options, $handler) {
  $options['link']['contains']['path'] = array(
    'default' => '',
  );
  $options['link']['contains']['absolute'] = array(
    'default' => 0,
  );
}