function workflow_cleanup_help in Workflow 7.2
Same name and namespace in other branches
- 8 modules/workflow_cleanup/workflow_cleanup.module \workflow_cleanup_help()
Implements hook_help().
File
- workflow_cleanup/
workflow_cleanup.module, line 31 - Cleans up Workflow cruft that may build up over time.
Code
function workflow_cleanup_help($path, $arg) {
switch ($path) {
case WORKFLOW_ADMIN_UI_PATH . '/cleanup':
return t('This page allows you to delete orphaned and inactive states.
States can be deleted freely in a development environment, but be
careful if you have used a State in a production environment. The
transition history of your content will loose the description of a
previously used state. If your Workflow must comply to some auditing
standards, you should NOT use this function.');
}
}