You are here

function birthdays_help in Birthdays 5

Same name and namespace in other branches
  1. 6 birthdays.module \birthdays_help()
  2. 7 birthdays.module \birthdays_help()

Implementation of hook_help().

File

./birthdays.module, line 134
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_help($section = '') {
  $output = '';
  switch ($section) {
    case 'admin/help#birthdays':
      $output = t("Allows users to store their birthdays and displays blocks of upcoming birthdays. Sends out e-mail on user's birthday automatically as cron job. Also sends admin reminder e-mails of upcoming user's birthdays. Most functionality is configurable in the admin settings and user settings. Requires profile.module and a present date field dedicated to the birthdays.");
      break;
  }
  return $output;
}