You are here

function bbb_views_views_handlers in BigBlueButton 8

Same name and namespace in other branches
  1. 7 includes/bbb_views.views.inc \bbb_views_views_handlers()

Implement hook_views_handlers().

File

modules/bbb_views/includes/bbb_views.views.inc, line 14
BigBlueButton - Enables universities and colleges to deliver a high-quality learning experience.

Code

function bbb_views_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'bbb_views') . '/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',
      ),
    ),
  );
}