beginning of overall workflow documentation

This commit is contained in:
Colin Kuskie 2006-07-01 01:56:13 +00:00
parent 5ddc168659
commit 6721913320
3 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,15 @@
package WebGUI::Help::Workflow;
our $HELP = {
'manage workflows' => {
title => 'manage workflows',
body => 'manage workflow help body',
fields => [
],
related => [
],
},
};
1; ##All perl modules must return true

View file

@ -331,7 +331,8 @@ sub www_manageWorkflows {
my $ac = WebGUI::AdminConsole->new($session,"workflow");
$ac->addSubmenuItem($session->url->page("op=addWorkflow"), $i18n->get("add a new workflow"));
$ac->addSubmenuItem($session->url->page("op=showRunningWorkflows"), $i18n->get("show running workflows"));
return $ac->render($output);
$ac->setHelp('manage workflows', 'Workflow');
return $ac->render($output, 'manage workflows');
}

View file

@ -127,6 +127,14 @@ our $I18N = {
lastUpdated => 0,
},
'manage workflow help body' => {
message => q|
<p>This is the master screen for managing workflows. All configured workflows are shown in a table by the title of the workflow, along with icons to edit or delete the workflow and the workflow's status, enabled or disabled. Links are provided to add new workflows and to show which, if any, workflows are presently running.</p>
<p>The manage workflow screen is accessed from the Admin Console.</p>
|,
lastUpdated => 0,
},
'topicName' => {
message => q|Workflow|,
context => q|The title of the workflow interface.|,