add workflow to list of tasks in menu

This commit is contained in:
Uwe Steinmann 2018-03-29 16:45:39 +02:00
parent c0c9f755a8
commit 28c2323744

View File

@ -295,6 +295,7 @@ if(!is_writeable($settings->_configFilePath)) {
<select name="tasksInMenu[]" multiple>
<option value="review" <?php if (in_array('review', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_review");?></option>
<option value="approval" <?php if (in_array('approval', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_approval");?></option>
<option value="workflow" <?php if (in_array('workflow', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_workflow");?></option>
<option value="receipt" <?php if (in_array('receipt', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_receipt");?></option>
<option value="revision" <?php if (in_array('revision', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_revision");?></option>
<option value="needscorrection" <?php if (in_array('needscorrection', $settings->_tasksInMenu)) echo "selected" ?>><?php printMLText("settings_tasksInMenu_needscorrection");?></option>