You are here

views_view_field.views.inc in Views PDF 8

Views hook implementations

File

modules/views_view_field/views_view_field.views.inc
View source
<?php

/**
 * @file
 * Views hook implementations
 */

/**
 * Implemenation of hook_views_data()
 */
function views_view_field_views_data() {
  $data['view']['table']['group'] = t('View');
  $data['view']['table']['join'] = array(
    '#global' => array(),
  );
  $data['view']['include'] = array(
    'title' => t('Include View'),
    'help' => t('Includes a view into this view.'),
    'field' => array(
      'handler' => 'views_view_field_handler_include_view',
      'click sortable' => FALSE,
      'notafield' => TRUE,
    ),
  );
  return $data;
}

Functions

Namesort descending Description
views_view_field_views_data Implemenation of hook_views_data()