function patron_help in Library 6
Same name and namespace in other branches
- 5.2 patron/patron.module \patron_help()
Implementation of hook_help()
File
- patron/
patron.module, line 50
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());
}
}
}