function bbb_permission in BigBlueButton 7
Implements HOOK_permission().
File
- ./
bbb.module, line 54 - Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.
Code
function bbb_permission() {
return array(
'administer big blue button' => array(
'title' => t('Administer BigBlueButton'),
'description' => t('Allow administration of BigBlueButton'),
),
//TODO:
// 'start meetings',
// 'start own meetings',
'moderate meetings' => array(
'title' => t('Moderate meetings'),
'description' => t('Allow moderation of meetings'),
),
'moderate own meetings' => array(
'title' => t('Moderate own meetings'),
'description' => t('Allow moderation of own meetings'),
),
'attend meetings' => array(
'title' => t('Attend meetings'),
'description' => t('Allow following meetings as an attendee'),
),
'record meetings' => array(
'title' => t('Record meetings'),
'description' => t('Allow the user to record meetings.'),
),
);
}