function maillog_views_handlers in Maillog / Mail Developer 6
Same name and namespace in other branches
- 7 includes/maillog.views.inc \maillog_views_handlers()
Implementation of hook_views_handlers() to register all of the basic handlers views uses.
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
'maillog_handler_field_maillog_link_delete' => array(
'parent' => 'views_handler_field',
),
),
);
}