function flatcomments_existing_help in Flatcomments 6.2
Same name and namespace in other branches
- 6 flatcomments_existing/flatcomments_existing.module \flatcomments_existing_help()
Implementation of hook_help().
File
- flatcomments_existing/
flatcomments_existing.module, line 11 - Remove threading from existing comments by content type.
Code
function flatcomments_existing_help($path, $arg) {
switch ($path) {
case 'admin/help#flatcomments_existing':
case 'admin/content/comment/flatten':
return '<p>' . t('The Flatcomments Existing module allows you to remove threading information from comments already existing in the database. This is useful when the Flatcomments module gets installed to an already existing site, and/or if a content type is switched from threaded to flat commenting mode later, in order to apply the behavior to previously existing comments.') . '</p>';
}
}