You are here

function views_fields_on_off_views_data in Views Fields On/Off 7

Same name and namespace in other branches
  1. 8 views_fields_on_off.views.inc \views_fields_on_off_views_data()

Implements hook_views_data().

File

includes/views/views_fields_on_off.views.inc, line 11
Views Fields On/Off views code.

Code

function views_fields_on_off_views_data() {
  $data['views']['views_fields_on_off_form'] = array(
    'title' => t('On/Off Form'),
    'help' => t('Display fields to be switched on and off.'),
    'field' => array(
      'handler' => 'views_fields_on_off_form',
    ),
  );
  return $data;
}