Install
Works with Drupal: 7.xUsing Composer to manage Drupal site dependencies
Downloads
Release notes
Release 7.x-1.3 of Advanced help
Changes since tagged release 7.x-1.2:
#1524936: Foreign Key Definition In Install File Not Correct
#1846218: Supply example on the appropriate translation directory
#2492565: Why clutter the admin menu? Move Advanced Help under Help
Notice: As a result of #2492565: Why clutter the admin menu? Move Advanced Help under Help, the path to the advanced help link to the module's README have changed. If you previously used this path: 'admin/advanced_help/mymodule', you should now use this path: 'admin/help/ah/mymodule'.
This path has been used in the past by a few modules to link to the module's README from hook_help. If this is all you want to do, it is strongly recommended that you make Advanced help hint a requirement, and then use the following as a template for hook_help.
function mymodule_help($path, $arg) {
if ($path == 'admin/help#mymodule') {
return '<p>' . t('Some short description the module.') . '</p>' .
'<p>' .
advanced_help_hint_docs('mymodule', NULL, TRUE) .
'</p>';
}
}