function avatar_selection_perm in Avatar Selection 6
Same name and namespace in other branches
- 5.2 avatar_selection.module \avatar_selection_perm()
- 5 avatar_selection.module \avatar_selection_perm()
Implementation of hook_perm().
Define the permissions this module uses.
File
- ./
avatar_selection.module, line 35 - The Avatar Selection module allows the user to pick an avatar image from a list already loaded by an administrative user, and to the administrator to disable uploading other avatar files by the user.
Code
function avatar_selection_perm() {
return array(
'administer avatar selection',
'access avatars',
'upload avatar in profile',
);
}