function fusion_apply_help in Fusion Accelerator 7
Same name and namespace in other branches
- 7.2 fusion_apply/fusion_apply.module \fusion_apply_help()
Implements hook_help().
File
- fusion_apply/
fusion_apply.module, line 16 - Handles core Fusion Apply functionality.
Code
function fusion_apply_help($path, $arg) {
switch ($path) {
case 'admin/help#fusion':
if (module_exists('advanced_help')) {
return t('Visit the <a href="@fusion-help">help page</a> for full documentation.', array(
'@fusion-help' => url('admin/advanced_help/fusion'),
));
}
else {
return t('Please download and enable the <a href="http://drupal.org/project/advanced_help">Advanced Help</a> module for full Fusion documentation.');
}
break;
}
}