function notifications_views_views_handlers in Notifications 6        
                          
                  
                        Same name and namespace in other branches
- 6.4 notifications_views/notifications_views.module \notifications_views_views_handlers()
 - 6.2 notifications_views/notifications_views.module \notifications_views_views_handlers()
 - 6.3 notifications_views/notifications_views.module \notifications_views_views_handlers()
 
 
File
 
   - notifications_views/notifications_views.module, line 297
 
  
Code
function notifications_views_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'notifications_views'),
    ),
    'handlers' => array(
      
      'views_handler_filter_subscription_send_method' => array(
        'parent' => 'views_handler_filter_in_operator',
      ),
      'views_handler_filter_subscription_type' => array(
        'parent' => 'views_handler_filter_in_operator',
      ),
      'views_handler_filter_subscription_interval' => array(
        'parent' => 'views_handler_filter_in_operator',
      ),
      
      'views_handler_argument_subscription_type' => array(
        'parent' => 'views_handler_argument',
      ),
      
      'notifications_views_handler_field_body' => array(
        'parent' => 'views_handler_field',
      ),
      'notifications_views_handler_field_delete_link' => array(
        'parent' => 'views_handler_field',
      ),
      'views_handler_field_subscription_type' => array(
        'parent' => 'views_handler_field',
      ),
      'views_handler_field_subscription_interval' => array(
        'parent' => 'views_handler_field',
      ),
      
      'views_handler_relationship_notifications' => array(
        'parent' => 'views_handler_relationship',
      ),
    ),
  );
}