You are here

function views_fields_on_off_views_data in Views Fields On/Off 8

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

Implements hook_views_data().

File

./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'] = [
    'title' => t('On/Off Form'),
    'help' => t('Display fields to be switched on and off.'),
    'field' => [
      'id' => 'views_fields_on_off_form',
    ],
  ];
  return $data;
}