You are here

function bbb_is_meeting_type in BigBlueButton 6

Same name and namespace in other branches
  1. 7 bbb.module \bbb_is_meeting_type()

Check if node type is meeting

5 calls to bbb_is_meeting_type()
bbb_access_attendee in ./bbb.module
Check attendance access permissions; Menu access callback
bbb_access_moderator in ./bbb.module
Check moderation access permissions; Menu access callback
bbb_form_alter in ./bbb.module
Implement HOOK_form_alter().
bbb_link in ./bbb.module
Implement HOOK_link().
bbb_nodeapi in ./bbb.module
Implement HOOK_nodeapi().

File

./bbb.module, line 485
Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.

Code

function bbb_is_meeting_type($type) {
  return variable_get('bbb_content_type_' . $type, FALSE);
}