easyphp and new workflow

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
vopman
Posts: 2
Joined: 14 Jun 2007, 13:35

easyphp and new workflow

Post by vopman »

I can not see the changes in the workflow. I modified the files that said the help Config_inc.php custom_strings_inc.php custom_constant_inc.php to add a new state (corrected)

config_inc.php

$g_status_enum_string =
'10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,
60:corrected,80:resolved,90:closed';
# Status color additions
$g_status_colors['corrected'] = '#ACE7AE';

$g_access_levels_enum_string= '10:viewer,25:reporter,40:updater,55:developer,70:manager,90:administrator';
#$g_status_enum_string= '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,60:corrected,80:resolved,90:closed';

$g_status_enum_workflow[NEW_]=
'10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,60:corrected';
$g_status_enum_workflow[FEEDBACK] =
'10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,60:corrected';
$g_status_enum_workflow[ACKNOWLEDGED] =
'20:feedback,30:acknowledged,40:confirmed,50:assigned,60:corrected';
$g_status_enum_workflow[CONFIRMED] =
'20:feedback,40:confirmed,50:assigned,60:corrected';
$g_status_enum_workflow[ASSIGNED] =
'20:feedback,50:assigned,60:corrected,90:closed';
$g_status_enum_workflow[CORRECTED] =
'10:new,20:feedback,50:assigned,60:corrected,80:resolved,90:closed';
$g_status_enum_workflow[RESOLVED] =
'50:assigned,60:corrected,80:resolved,90:closed';
$g_status_enum_workflow[CLOSED] =
'50:assigned,90:closed';
#$g_status_enum_workflow=array();

config_strings_inc.php

<?php
define ( 'CORRECTED', 60 );
?>

custom_constant_inc.php

<?php
#if ( lang_get_current() == 'german' ) {
# $s_status_enum_string =
# '10:neu,20:R¸ckmeldung,30:anerkannt,40:best‰tigt,50:zugewiesen,
# 60:zu testen,80:behoben,90:geschlossen';
#} else {

$s_status_enum_string =
'10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,60:corrected,80:resolved,90:closed';
$s_to_be_tested_bug_button = "Issue Ready to Test";
$s_to_be_tested_bug_title = "Set Issue Ready to Test";
$s_email_notification_title_for_status_bug_to_be_tested =
"The following issue is ready CORRECTED.";
#}
?>

i have also an easyphp configuration 1-8 with

apache 1.3.33
php4.3.10
mysql 4.1.9
php myadmin 2.6.1


maybe the problem is here?????

Thanks in advance


[[/quote]
vopman
Posts: 2
Joined: 14 Jun 2007, 13:35

Post by vopman »

Sorry :P

It was my mistake with this configuration if you write the files in the correct folder the new workflow works correctly.

Thanks.
Post Reply