You are here

function mail_logger_date_api_tables in Mail Logger 6

Implement hook_date_api_tables().

This hook together with hook_date_api_fields() tells Date module's handlers how to use our date field.

These may as well live in this file, since it will be loaded by Views whenever Date module invokes both of these hooks, since it does so starting from its own hook_views_data().

File

views/mail_logger.views.inc, line 222
Contains implementations of Views hooks.

Code

function mail_logger_date_api_tables() {
  return array(
    'mail_logger',
  );
}