function private_views_handlers in Private 7
Same name and namespace in other branches
- 6 private.views.inc \private_views_handlers()
Implements hook_views_handlers().
File
- ./
private.views.inc, line 48 - Views integration functions for the private module.
Code
function private_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'private'),
),
'handlers' => array(
'private_handler_filter_private' => array(
'parent' => 'views_handler_filter_boolean_operator',
'file' => 'private_handler_filter_private.inc',
),
),
);
}