Code Duplication    Length = 7-7 lines in 3 locations

src/projects/field.php 3 locations

@@ 102-108 (lines=7) @@
99
100
switch ($field['field_type'])
101
{
102
    case FIELD_TYPE_NUMBER:
103
104
        $xml .= '<text label="' . get_html_resource(RES_MIN_VALUE_ID)     . '">' . ustr2html($field['param1']) . '</text>'
105
              . '<text label="' . get_html_resource(RES_MAX_VALUE_ID)     . '">' . ustr2html($field['param2']) . '</text>'
106
              . '<text label="' . get_html_resource(RES_DEFAULT_VALUE_ID) . '">' . (is_null($field['value_id']) ? get_html_resource(RES_NONE_ID) : $field['value_id']) . '</text>';
107
108
        break;
109
110
    case FIELD_TYPE_FLOAT:
111
@@ 142-148 (lines=7) @@
139
140
        break;
141
142
    case FIELD_TYPE_DATE:
143
144
        $xml .= '<text label="' . get_html_resource(RES_MIN_VALUE_ID)     . '">' . ustr2html($field['param1']) . '</text>'
145
              . '<text label="' . get_html_resource(RES_MAX_VALUE_ID)     . '">' . ustr2html($field['param2']) . '</text>'
146
              . '<text label="' . get_html_resource(RES_DEFAULT_VALUE_ID) . '">' . (is_null($field['value_id']) ? get_html_resource(RES_NONE_ID) : $field['value_id']) . '</text>';
147
148
        break;
149
150
    case FIELD_TYPE_DURATION:
151
@@ 150-156 (lines=7) @@
147
148
        break;
149
150
    case FIELD_TYPE_DURATION:
151
152
        $xml .= '<text label="' . get_html_resource(RES_MIN_VALUE_ID)     . '">' . time2ustr($field['param1']) . '</text>'
153
              . '<text label="' . get_html_resource(RES_MAX_VALUE_ID)     . '">' . time2ustr($field['param2']) . '</text>'
154
              . '<text label="' . get_html_resource(RES_DEFAULT_VALUE_ID) . '">' . (is_null($field['value_id']) ? get_html_resource(RES_NONE_ID) : time2ustr($field['value_id'])) . '</text>';
155
156
        break;
157
158
    default:
159