function birthdays_theme in Birthdays 7
Same name and namespace in other branches
- 6 birthdays.module \birthdays_theme()
Implements hook_theme().
File
- ./
birthdays.module, line 100 - 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 email on their birthday automatically, and the administrator can receive daily reminders of…
Code
function birthdays_theme() {
return array(
'birthdays_date' => array(
'render element' => 'element',
),
);
}