You are here

hosting_client.views.inc in Hosting 6.2

Client module views integration.

File

client/hosting_client.views.inc
View source
<?php

/**
 * @file
 *   Client module views integration.
 */

/**
 * Implementation of hook_views_data().
 */
function hosting_client_views_data() {
  $data['hosting_client'] = array(
    'table' => array(
      'group' => 'Hosting Client',
      'title' => 'Client',
      'join' => array(
        'node' => array(
          'left_field' => 'vid',
          'field' => 'vid',
        ),
      ),
    ),
    'uname' => array(
      'title' => t('Internal name'),
      'help' => t('The internal name for this client.'),
      'field' => array(
        'handler' => 'views_handler_field',
        'click sortable' => TRUE,
      ),
    ),
  );
  return $data;
}

Functions

Namesort descending Description
hosting_client_views_data Implementation of hook_views_data().