function push_notifications_views_handlers in Push Notifications 7
Implements hook_views_handlers().
File
- views/
push_notifications.views.inc, line 129
Code
function push_notifications_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'push_notifications') . '/views',
),
'handlers' => array(
'push_notifications_views_handler_filter_push_notifications_type' => array(
'parent' => 'views_handler_filter_in_operator',
),
'push_notifications_views_handler_field_push_notifications_type' => array(
'parent' => 'views_handler_field',
),
),
);
}