managed enum_workflow for customized status values

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
noc
Posts: 9
Joined: 08 Feb 2012, 16:22

managed enum_workflow for customized status values

Post by noc »

Hi,

I 've install a Mantis 1.2.8 version and change the status values.

My new status values are:
$g_status_enum_string = '10:New,20:Feedback,30:Processing,50:Assigned,80:Finished,90:Closed';

This works all fine, now I would like set the "enum_workflow". I 've activated following lines in my config_inc.php.
$g_status_enum_workflow[NEW_] = '20:Feedback,30:Processing,50:Assigned,80:Finished';
$g_status_enum_workflow[FEEDBACK] = '30:Processing,50:Assigned,80:Finished';
$g_status_enum_workflow[ASSIGNED] = '20:Feedback,30:Processing,80:Finished';
$g_status_enum_workflow[RESOLVED] = '50:Assigned,90:Closed';
$g_status_enum_workflow[CLOSED] = '20:Feedback';

How can I set the enum workflow for "Processing"?

Could anybody help me, how to do it please...

Regards,
noc
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: managed enum_workflow for customized status values

Post by atrol »

I recommend to use the page "Manage" -> "Manage Configuration" -> "Workflow Transitions" for the workflow customization.
Please use Search before posting and read the Manual
noc
Posts: 9
Joined: 08 Feb 2012, 16:22

Re: managed enum_workflow for customized status values

Post by noc »

thank you, that works.
Post Reply