function mvf_views_handlers in Measured Value Field 6
Implementation of hook_views_handlers() to register all of the basic handlers views uses.
File
- includes/
mvf.views.inc, line 13 - Defines MVF Views data and plugins.
Code
function mvf_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'mvf') . '/includes',
),
'handlers' => array(
'mvf_filter_handler' => array(
'parent' => 'content_handler_filter_float',
),
),
);
}