function hosting_views_handlers in Hostmaster (Aegir) 6
Implementation of hook_views_handlers().
File
- modules/
hosting/ hosting.views.inc, line 11 - Views integration for the Hosting module.
Code
function hosting_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'hosting'),
),
'handlers' => array(
// field handlers
'hosting_views_field_handler_interval' => array(
'parent' => 'views_handler_field',
),
),
);
}