function git_deploy_help in Git Deploy 6
Same name and namespace in other branches
- 6.2 git_deploy.module \git_deploy_help()
Implements hook_help().
File
- ./
git_deploy.module, line 21 - Adds project, version and date information to projects checked out with Git.
Code
function git_deploy_help($path, $arg) {
if ($path == 'admin/reports/updates' && !module_exists('mydropwizard')) {
return '<p><strong>' . t('Drupal 6 has reached its community End-of-Life (EOL) date and is now in a Long-Term Support (LTS) phase, where support is provided by a <a href="http://drupal.org/project/d6lts">small group of vendors</a>. To get accurate update status information, enable the <a href="https://www.drupal.org/project/mydropwizard">myDropWizard</a> module.') . '</strong></p>';
}
}