You are here

function patron_help in Library 5.2

Same name and namespace in other branches
  1. 6 patron/patron.module \patron_help()

Implementation of hook_help()

File

patron/patron.module, line 51

Code

function patron_help($path, $arg) {
  switch ($path) {
    case 'patrons/email':
      if ($arg[2]) {
        return t('<p>The form below will send an email to the patron specified. If no patron is specified, the email will be sent to all active patrons.</p>', array());
      }
      else {
        return t('<p>The form below will send an email to all active patrons.</p>', array());
      }
  }
}