function nat_views_handlers in Node Auto Term [NAT] 6.2
Same name and namespace in other branches
- 6 includes/nat.views.inc \nat_views_handlers()
- 7.2 includes/nat.views.inc \nat_views_handlers()
- 7 includes/nat.views.inc \nat_views_handlers()
Implementation of hook_views_handlers() to register all the basic handlers that Views uses.
File
- includes/
nat.views.inc, line 12 - NAT (Node Auto Term) Views implementation.
Code
function nat_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'nat') . '/includes',
),
'handlers' => array(
'nat_handler_argument_term_node_tid_depth' => array(
'parent' => 'views_handler_argument',
),
'nat_handler_argument_term_node_tid_depth_modifier' => array(
'parent' => 'views_handler_argument',
),
),
);
}