Help with status
Posted: 29 Apr 2009, 10:03
im trying to customize mantis Staus to show only three status in the status drop-down box and therefoe added follwoing in config_inc.php file:
[code]$g_status_enum_string = '10:new,50:assigned,80:closed';
$g_status_enum_workflow[NEW_]=
'10:new,50:assigned';
$g_status_enum_workflow[FEEDBACK] =
'10:new,50:assigned';
$g_status_enum_workflow[ACKNOWLEDGED] =
'50:assigned';
$g_status_enum_workflow[CONFIRMED] =
'50:assigned';
$g_status_enum_workflow[ASSIGNED] =
'50:assigned,90:closed';
$g_status_enum_workflow[RESOLVED] =
'50:assigned,90:closed';
$g_status_enum_workflow[CLOSED] =
'50:assigned';[/code]
what this does is that it does not show the cases already closed or still going on with status Feedback, Acknowledged, Confirm and Closed.
I only want the status dropdown box to show three statuses not the Mantis to show the cases with only the status defined as: $g_status_enum_string = '10:new,50:assigned,80:closed';
[code]$g_status_enum_string = '10:new,50:assigned,80:closed';
$g_status_enum_workflow[NEW_]=
'10:new,50:assigned';
$g_status_enum_workflow[FEEDBACK] =
'10:new,50:assigned';
$g_status_enum_workflow[ACKNOWLEDGED] =
'50:assigned';
$g_status_enum_workflow[CONFIRMED] =
'50:assigned';
$g_status_enum_workflow[ASSIGNED] =
'50:assigned,90:closed';
$g_status_enum_workflow[RESOLVED] =
'50:assigned,90:closed';
$g_status_enum_workflow[CLOSED] =
'50:assigned';[/code]
what this does is that it does not show the cases already closed or still going on with status Feedback, Acknowledged, Confirm and Closed.
I only want the status dropdown box to show three statuses not the Mantis to show the cases with only the status defined as: $g_status_enum_string = '10:new,50:assigned,80:closed';