Same filename and directory in other branches
  1. 7.x-1.x views/colorbox.views.inc 1 comment

colorbox.views.inc

File

views/colorbox.views.inc

View source
<?php


/**
 * @file
 * colorbox.views.inc
 */

/**
 * Implements hook_views_data().
 */
function colorbox_views_data() {
    $data['colorbox']['table']['group'] = t('Colorbox');
    $data['colorbox']['table']['join'] = array(
        '#global' => array(),
    );
    $data['colorbox']['colorbox'] = array(
        'title' => t('Colorbox trigger'),
        'help' => t('Provide custom text or link.'),
        'field' => array(
            'handler' => 'colorbox_handler_field_colorbox',
        ),
    );
    return $data;
}

Functions

Title Deprecated Summary
colorbox_views_data Implements hook_views_data().