function searchindex_wipe_help in Search Index Wipe 7
Same name and namespace in other branches
- 8 searchindex_wipe.module \searchindex_wipe_help()
Implements hook_help().
File
- ./
searchindex_wipe.module, line 60 - Enables wipe of search index.
Code
function searchindex_wipe_help($path, $arg) {
switch ($path) {
// Main module help for the block module.
case 'admin/config/search/settings':
return '<p>' . t('Enables clearing of Search related indexes, so that search related tables do not grow large. To Re-index the site, You first need to click on Wipe Index button.') . '</p>';
}
}