You are here

views_fields_on_off.views.inc in Views Fields On/Off 7

Views Fields On/Off views code.

File

includes/views/views_fields_on_off.views.inc
View source
<?php

/**
 * @file
 * Views Fields On/Off views code.
 */

/**
 * Implements hook_views_data().
 */
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;
}

Functions