function ajax_comments_help in AJAX Comments 6
Implementation of hook_help().
File
- ./
ajax_comments.module, line 14 - Implements AJAX handling for Drupal comment forms.
Code
function ajax_comments_help($path, $arg) {
if (!module_exists('comment_bonus_api') && user_access('administer site configuration')) {
drupal_set_message(t('<a href="http://drupal.org/project/comment_bonus_api">Comments bonus API</a> is required to run AJAX Comments module. Please, download and install it.'), 'error');
}
}