function fillpdf_help in FillPDF 7
Same name and namespace in other branches
- 8.4 fillpdf.module \fillpdf_help()
- 5 fillpdf.module \fillpdf_help()
- 6 fillpdf.module \fillpdf_help()
- 7.2 fillpdf.module \fillpdf_help()
- 5.0.x fillpdf.module \fillpdf_help()
Implements hook_help().
File
- ./
fillpdf.module, line 16
Code
function fillpdf_help($path, $arg) {
switch ($path) {
case 'admin/help#fillpdf':
$content = t('See the <a href="!documentation">documentation on drupal.org</a> for a full description of and guide to this module.', array(
'!documentation' => url('http://drupal.org/documentation/modules/fillpdf'),
));
return $content;
case 'admin/structure/fillpdf':
if (module_exists('help')) {
return t('See the !link for an explanation on dowloading these forms to PDF', array(
'!link' => l(t('documentation'), 'http://drupal.org/documentation/modules/fillpdf'),
));
}
else {
return t('Activate the help module if you need an explanation on downloading these forms to PDF.');
}
}
}