function termstatus_help in Taxonomy Term Status 7
Implements hook_help().
File
- ./
termstatus.module, line 10 - Hook implementations and API for the taxonomy term status module.
Code
function termstatus_help($path, $arg) {
switch ($path) {
// Main module help for the block module.
case 'admin/help#termstatus':
return '<p>' . t('Provides a checkbox on the term edit form in order to set the publishing state.') . '</p>';
}
}