function birthdays_perm in Birthdays 6
Same name and namespace in other branches
- 5 birthdays.module \birthdays_perm()
Implementation of hook_perm().
File
- ./
birthdays.module, line 243 - The Birthdays module allows users to add their birthday to their profile. It lists birthdays on a seperate page and in different blocks. Users can receive an e-mail on their birthday automatically, and the administrator can receive daily reminders of…
Code
function birthdays_perm() {
return array(
'access birthdays',
);
}