You are here

function mail_logger_views_api in Mail Logger 6

Same name and namespace in other branches
  1. 7 mail_logger.module \mail_logger_views_api()

Implementation of hook_views_api().

File

./mail_logger.module, line 373
Mail Logger module logs all outgoing mail that passes through the drupal_mail function.

Code

function mail_logger_views_api() {
  return array(
    'api' => 2,
    'path' => drupal_get_path('module', 'mail_logger') . '/views',
  );
}