function maillog_views_handlers in Maillog / Mail Developer 7
Same name and namespace in other branches
- 6 includes/maillog.views.inc \maillog_views_handlers()
Implements hook_views_handlers().
File
- includes/
maillog.views.inc, line 197 - Make the fields from node type 'Logged Mail' available in views.
Code
function maillog_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'maillog') . '/includes',
),
'handlers' => array(
// Field handlers.
'MaillogHandlerFieldMaillogLinkDelete' => array(
'parent' => 'views_handler_field',
),
),
);
}