You are here

function commons_trusted_contacts_views_data in Drupal Commons 7.3

Implements hook_views_data().

File

modules/commons/commons_trusted_contacts/commons_trusted_contacts.views.inc, line 6

Code

function commons_trusted_contacts_views_data() {
  $data['og_membership']['send_message'] = array(
    'title' => t('Send Message'),
    'help' => t('Views handler.'),
    'real field' => 'etid',
    'field' => array(
      'handler' => 'commons_trusted_contacts_handler_send_message',
    ),
  );
  return $data;
}