You are here

message.views.inc in Message 8

Provide views data for message.module.

File

message.views.inc
View source
<?php

/**
 * @file
 * Provide views data for message.module.
 */

/**
 * Implements hook_views_data_alter().
 */
function message_views_data_alter(&$data) {
  $data['message']['get_text'] = [
    'title' => t('Message text'),
    'help' => t('Get the message text'),
    'field' => [
      // ID of the area handler plugin to use.
      'id' => 'get_text',
    ],
  ];
}

Functions