mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
add workflow to list of tasks in menu
This commit is contained in:
parent
c0c9f755a8
commit
28c2323744
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue
Block a user