function brightcove_perm in Brightcove Video Connect 6.2
Same name and namespace in other branches
- 6 brightcove.module \brightcove_perm()
Implementation of hook_perm().
File
- ./
brightcove.module, line 49 - Brightcove module is an integration layer between any modules using Brightcove API. It makes all necessary checks for the API and makes settings available to the user.
Code
function brightcove_perm() {
return array(
'administer brightcove settings',
'browse videos',
'upload videos',
);
}