function gravatar_perm in Gravatar integration 6
Same name and namespace in other branches
- 5 gravatar.module \gravatar_perm()
Implements hook_perm().
File
- ./
gravatar.module, line 76 - Integrates gravatar service for user pictures.
Code
function gravatar_perm() {
return array(
'administer gravatar',
'use gravatar',
'disable own gravatar',
);
}