You are here

location_fax.views.inc in Location 7.4

Views 3 support for Location Fax.

File

contrib/location_fax/location_fax.views.inc
View source
<?php

/**
 * @file
 * Views 3 support for Location Fax.
 */

/**
 * Implementation of hook_views_data().
 */
function location_fax_views_data() {

  // ----------------------------------------------------------------
  // location_fax table -- basic table information.
  // Define the base group of this table. Fields that don't
  // have a group defined will go into this field by default.
  $data['location_fax']['table']['group'] = t('Location');

  // Join location_fax to all the tables that would be useful
  $data['location_fax']['table']['join'] = array(
    // location_fax links to location via lid.
    'location' => array(
      'left_field' => 'lid',
      'field' => 'lid',
    ),
    // location_fax links to node through location_instance via lid.
    'node' => array(
      'left_table' => 'location_instance',
      'left_field' => 'lid',
      'field' => 'lid',
    ),
    // location_fax links to node_revisions through location_instance via lid.
    'node_revisions' => array(
      'left_table' => 'location_instance',
      'left_field' => 'lid',
      'field' => 'lid',
    ),
    // location_fax links to users through location_instance via lid.
    'users' => array(
      'left_table' => 'location_instance',
      'left_field' => 'lid',
      'field' => 'lid',
    ),
  );

  // ----------------------------------------------------------------
  // location_fax table -- fields
  $data['location_fax']['fax'] = array(
    'title' => t('Fax'),
    'help' => t('The fax number of the selected location.'),
    'field' => array(
      'click sortable' => TRUE,
    ),
    'argument' => array(
      'handler' => 'views_handler_argument_string',
      'empty field name' => t('None'),
    ),
    'filter' => array(
      'handler' => 'views_handler_filter_string',
      'allow empty' => TRUE,
    ),
  );
  return $data;
}

Functions

Namesort descending Description
location_fax_views_data Implementation of hook_views_data().