Index: includes/bbb.views.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/bbb/includes/Attic/bbb.views.inc,v retrieving revision 1.1.2.2 diff -u -p -u -p -r1.1.2.2 bbb.views.inc --- includes/bbb.views.inc 10 Jan 2011 15:38:37 -0000 1.1.2.2 +++ includes/bbb.views.inc 15 Feb 2011 06:14:39 -0000 @@ -180,3 +201,22 @@ function bbb_views_data() { return $data; } + +/** + * Implement hook_views_handlers(). + */ +function bbb_views_handlers() { + return array( + 'info' => array( + 'path' => drupal_get_path('module', 'bbb') . '/includes', + ), + 'handlers' => array( + 'views_handler_field_bbb_join_attendee' => array( + 'parent' => 'views_handler_field', + ), + 'views_handler_field_bbb_join_moderator' => array( + 'parent' => 'views_handler_field', + ), + ), + ); +}