You are here

message_ui.views.inc in Message UI 8

Integration with the views module.

File

message_ui.views.inc
View source
<?php

/**
 * @file
 * Integration with the views module.
 */

/**
 * Implements hook_views_data().
 */
function message_ui_views_data() {
  $data = [];
  $data['message']['message_ui_contextual_links'] = [
    'field' => [
      'title' => t('Contextual links'),
      'help' => t('The aliased path to this content.'),
      'id' => 'message_ui_contextual_links',
    ],
  ];
  return $data;
}

Functions

Namesort descending Description
message_ui_views_data Implements hook_views_data().