You are here

function views_field_tooltip_views_plugins in Views Field Tooltip 7

Implements hook_views_plugins().

File

./views_field_tooltip.views.inc, line 11
Views integration for the views_field_tooltip module.

Code

function views_field_tooltip_views_plugins() {
  $path = drupal_get_path('module', 'views_field_tooltip') . '/views';
  $plugins = array();
  $plugins['display_extender']['views_field_tooltip'] = array(
    'title' => t('Views Field Tooltip'),
    'path' => $path,
    'handler' => 'views_field_tooltip_plugin_display_extender',
    'enabled' => TRUE,
  );
  return $plugins;
}