You are here

function views_fields_on_off_views_api in Views Fields On/Off 7

Implements hook_views_api().

File

./views_fields_on_off.module, line 11
Provides a Views Global field that allows users to turn fields on/off.

Code

function views_fields_on_off_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'views_fields_on_off') . '/includes/views',
  );
}