This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | //------------------------------------------------------------------------------ |
||
4 | // |
||
5 | // eTraxis - Records tracking web-based system |
||
6 | // Copyright (C) 2004-2011 Artem Rodygin |
||
7 | // |
||
8 | // This program is free software: you can redistribute it and/or modify |
||
9 | // it under the terms of the GNU General Public License as published by |
||
10 | // the Free Software Foundation, either version 3 of the License, or |
||
11 | // (at your option) any later version. |
||
12 | // |
||
13 | // This program is distributed in the hope that it will be useful, |
||
14 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
16 | // GNU General Public License for more details. |
||
17 | // |
||
18 | // You should have received a copy of the GNU General Public License |
||
19 | // along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
20 | // |
||
21 | //------------------------------------------------------------------------------ |
||
22 | |||
23 | /** |
||
24 | * Localization |
||
25 | * |
||
26 | * This module contains IDs of all UI prompts. |
||
27 | * |
||
28 | * @package Engine |
||
29 | * @subpackage Localization |
||
30 | */ |
||
31 | |||
32 | //------------------------------------------------------------------------------ |
||
33 | // Alerts. |
||
34 | //------------------------------------------------------------------------------ |
||
35 | |||
36 | /** |
||
37 | * Begin of section with alert prompts. |
||
38 | */ |
||
39 | define('RES_SECTION_ALERTS', 200); |
||
40 | |||
41 | /**#@+ |
||
42 | * Alert prompt ID. |
||
43 | */ |
||
44 | define('RES_ALERT_REQUIRED_ARE_EMPTY_ID', 200); |
||
45 | define('RES_ALERT_DEFAULT_VALUE_OUT_OF_RANGE_ID', 201); |
||
46 | define('RES_ALERT_ACCOUNT_DISABLED_ID', 202); |
||
47 | define('RES_ALERT_ACCOUNT_LOCKED_ID', 203); |
||
48 | define('RES_ALERT_INVALID_USERNAME_ID', 204); |
||
49 | define('RES_ALERT_ACCOUNT_ALREADY_EXISTS_ID', 205); |
||
50 | define('RES_ALERT_INVALID_EMAIL_ID', 206); |
||
51 | define('RES_ALERT_PASSWORDS_DO_NOT_MATCH_ID', 207); |
||
52 | define('RES_ALERT_PASSWORD_TOO_SHORT_ID', 208); |
||
53 | define('RES_ALERT_PROJECT_ALREADY_EXISTS_ID', 209); |
||
54 | define('RES_ALERT_GROUP_ALREADY_EXISTS_ID', 210); |
||
55 | define('RES_ALERT_TEMPLATE_ALREADY_EXISTS_ID', 211); |
||
56 | define('RES_ALERT_STATE_ALREADY_EXISTS_ID', 212); |
||
57 | define('RES_ALERT_FIELD_ALREADY_EXISTS_ID', 213); |
||
58 | define('RES_ALERT_INVALID_INTEGER_VALUE_ID', 214); |
||
59 | define('RES_ALERT_INTEGER_VALUE_OUT_OF_RANGE_ID', 215); |
||
60 | define('RES_ALERT_FIELD_VALUE_OUT_OF_RANGE_ID', 216); |
||
61 | define('RES_ALERT_MIN_MAX_VALUES_ID', 217); |
||
62 | define('RES_ALERT_UPLOAD_INI_SIZE_ID', 218); |
||
63 | define('RES_ALERT_UPLOAD_FORM_SIZE_ID', 219); |
||
64 | define('RES_ALERT_UPLOAD_PARTIAL_ID', 220); |
||
65 | define('RES_ALERT_UPLOAD_NO_FILE_ID', 221); |
||
66 | define('RES_ALERT_UPLOAD_NO_TMP_DIR_ID', 222); |
||
67 | define('RES_ALERT_ATTACHMENT_ALREADY_EXISTS_ID', 223); |
||
68 | define('RES_ALERT_RECORD_NOT_FOUND_ID', 224); |
||
69 | define('RES_ALERT_FILTER_ALREADY_EXISTS_ID', 225); |
||
70 | define('RES_ALERT_INVALID_DATE_VALUE_ID', 226); |
||
71 | define('RES_ALERT_DATE_VALUE_OUT_OF_RANGE_ID', 227); |
||
72 | define('RES_ALERT_INVALID_TIME_VALUE_ID', 228); |
||
73 | define('RES_ALERT_TIME_VALUE_OUT_OF_RANGE_ID', 229); |
||
74 | define('RES_ALERT_SUBSCRIPTION_ALREADY_EXISTS_ID', 230); |
||
75 | define('RES_ALERT_REMINDER_ALREADY_EXISTS_ID', 231); |
||
76 | define('RES_ALERT_REMINDER_IS_SENT_ID', 232); |
||
77 | define('RES_ALERT_VIEW_ALREADY_EXISTS_ID', 233); |
||
78 | define('RES_ALERT_SPECIFY_SHORT_DESCRIPTION_ID', 234); |
||
79 | define('RES_ALERT_UPLOAD_CANT_WRITE_ID', 235); |
||
80 | define('RES_ALERT_UPLOAD_EXTENSION_ID', 236); |
||
81 | define('RES_ALERT_JAVASCRIPT_MUST_BE_ENABLED_ID', 237); |
||
82 | define('RES_ALERT_DO_NOT_REPLY_ID', 238); |
||
83 | define('RES_ALERT_INVALID_DECIMAL_VALUE_ID', 239); |
||
84 | define('RES_ALERT_DECIMAL_VALUE_OUT_OF_RANGE_ID', 240); |
||
85 | define('RES_ALERT_VIEW_CANNOT_HAVE_MORE_COLUMNS', 241); |
||
86 | define('RES_ALERT_VALUE_FAILS_REGEX_CHECK_ID', 242); |
||
87 | define('RES_ALERT_USER_NOT_AUTHORIZED_ID', 243); |
||
88 | define('RES_ALERT_UNKNOWN_USERNAME_ID', 244); |
||
89 | define('RES_ALERT_UNKNOWN_ERROR_ID', 245); |
||
90 | define('RES_ALERT_XML_PARSER_ERROR_ID', 246); |
||
91 | define('RES_ALERT_SUCCESSFULLY_SAVED_ID', 247); |
||
92 | |||
93 | //------------------------------------------------------------------------------ |
||
94 | // Confirmations. |
||
95 | //------------------------------------------------------------------------------ |
||
96 | |||
97 | /** |
||
98 | * Begin of section with confirmation prompts. |
||
99 | */ |
||
100 | define('RES_SECTION_CONFIRMS', 300); |
||
101 | |||
102 | /**#@+ |
||
103 | * Confirmation prompt ID. |
||
104 | */ |
||
105 | define('RES_CONFIRM_DELETE_VIEWS_ID', 300); |
||
106 | define('RES_CONFIRM_DELETE_ACCOUNT_ID', 301); |
||
107 | define('RES_CONFIRM_DELETE_PROJECT_ID', 302); |
||
108 | define('RES_CONFIRM_DELETE_GROUP_ID', 303); |
||
109 | define('RES_CONFIRM_DELETE_TEMPLATE_ID', 304); |
||
110 | define('RES_CONFIRM_DELETE_STATE_ID', 305); |
||
111 | define('RES_CONFIRM_DELETE_FIELD_ID', 306); |
||
112 | define('RES_CONFIRM_CHANGE_STATE_ID', 307); |
||
113 | define('RES_CONFIRM_RESUME_RECORD_ID', 308); |
||
114 | define('RES_CONFIRM_ASSIGN_RECORD_ID', 309); |
||
115 | define('RES_CONFIRM_DELETE_FILTERS_ID', 310); |
||
116 | define('RES_CONFIRM_DELETE_SUBSCRIPTIONS_ID', 311); |
||
117 | define('RES_CONFIRM_SEND_REMINDER_ID', 312); |
||
118 | define('RES_CONFIRM_DELETE_REMINDER_ID', 313); |
||
119 | define('RES_CONFIRM_LOGOUT_ID', 314); |
||
120 | define('RES_CONFIRM_DELETE_RECORD_ID', 315); |
||
121 | /**#@-*/ |
||
122 | |||
123 | //------------------------------------------------------------------------------ |
||
124 | // Other prompts. |
||
125 | //------------------------------------------------------------------------------ |
||
126 | |||
127 | /** |
||
128 | * Begin of section with general prompts. |
||
129 | */ |
||
130 | define('RES_SECTION_PROMPTS', 1000); |
||
131 | |||
132 | /**#@+ |
||
133 | * General prompt ID. |
||
134 | */ |
||
135 | define('RES_LOCALE_ID', 1000); |
||
136 | define('RES_LOGIN_ID', 1001); |
||
137 | define('RES_OK_ID', 1002); |
||
138 | define('RES_CANCEL_ID', 1003); |
||
139 | define('RES_SAVE_ID', 1004); |
||
140 | define('RES_BACK_ID', 1005); |
||
141 | define('RES_NEXT_ID', 1006); |
||
142 | define('RES_CREATE_ID', 1007); |
||
143 | define('RES_MODIFY_ID', 1008); |
||
144 | define('RES_DELETE_ID', 1009); |
||
145 | define('RES_RECORDS_ID', 1010); |
||
146 | define('RES_ACCOUNTS_ID', 1011); |
||
147 | define('RES_PROJECTS_ID', 1012); |
||
148 | define('RES_CHANGE_PASSWORD_ID', 1013); |
||
149 | define('RES_FIELDS_OF_STATE_X_ID', 1014); |
||
150 | define('RES_NONE_ID', 1015); |
||
151 | define('RES_TOTAL_ID', 1016); |
||
152 | define('RES_THEME_ID', 1017); |
||
153 | define('RES_ACCOUNT_INFO_ID', 1018); |
||
154 | define('RES_USERNAME_ID', 1019); |
||
155 | define('RES_FULLNAME_ID', 1020); |
||
156 | define('RES_EMAIL_ID', 1021); |
||
157 | define('RES_DEFAULT_ID', 1022); |
||
158 | define('RES_ADMINISTRATOR_ID', 1023); |
||
159 | define('RES_USER_ID', 1024); |
||
160 | define('RES_DESCRIPTION_ID', 1025); |
||
161 | define('RES_PASSWORD_ID', 1026); |
||
162 | define('RES_PASSWORD_CONFIRM_ID', 1027); |
||
163 | define('RES_DISABLED_ID', 1028); |
||
164 | define('RES_LOCKED_ID', 1029); |
||
165 | define('RES_NEW_ACCOUNT_ID', 1030); |
||
166 | define('RES_ACCOUNT_X_ID', 1031); |
||
167 | define('RES_PROJECT_INFO_ID', 1032); |
||
168 | define('RES_PROJECT_NAME_ID', 1033); |
||
169 | define('RES_START_TIME_ID', 1034); |
||
170 | define('RES_SUSPENDED_ID', 1035); |
||
171 | define('RES_NEW_PROJECT_ID', 1036); |
||
172 | define('RES_PROJECT_X_ID', 1037); |
||
173 | define('RES_GROUPS_ID', 1038); |
||
174 | define('RES_GROUP_INFO_ID', 1039); |
||
175 | define('RES_GROUP_NAME_ID', 1040); |
||
176 | define('RES_NEW_GROUP_ID', 1041); |
||
177 | define('RES_GROUP_X_ID', 1042); |
||
178 | define('RES_MEMBERSHIP_ID', 1043); |
||
179 | define('RES_OTHERS_ID', 1044); |
||
180 | define('RES_MEMBERS_ID', 1045); |
||
181 | define('RES_TEMPLATES_ID', 1046); |
||
182 | define('RES_TEMPLATE_INFO_ID', 1047); |
||
183 | define('RES_TEMPLATE_NAME_ID', 1048); |
||
184 | define('RES_TEMPLATE_PREFIX_ID', 1049); |
||
185 | define('RES_NEW_TEMPLATE_ID', 1050); |
||
186 | define('RES_TEMPLATE_X_ID', 1051); |
||
187 | define('RES_STATES_ID', 1052); |
||
188 | define('RES_STATE_INFO_ID', 1053); |
||
189 | define('RES_STATE_NAME_ID', 1054); |
||
190 | define('RES_STATE_ABBR_ID', 1055); |
||
191 | define('RES_STATE_TYPE_ID', 1056); |
||
192 | define('RES_INITIAL_ID', 1057); |
||
193 | define('RES_INTERMEDIATE_ID', 1058); |
||
194 | define('RES_FINAL_ID', 1059); |
||
195 | define('RES_RESPONSIBLE_ID', 1060); |
||
196 | define('RES_REMAIN_ID', 1061); |
||
197 | define('RES_ASSIGN_ID', 1062); |
||
198 | define('RES_REMOVE_ID', 1063); |
||
199 | define('RES_NEW_STATE_ID', 1064); |
||
200 | define('RES_STATE_X_ID', 1065); |
||
201 | define('RES_CREATE_INTERMEDIATE_ID', 1066); |
||
202 | define('RES_CREATE_FINAL_ID', 1067); |
||
203 | define('RES_TRANSITIONS_ID', 1068); |
||
204 | define('RES_PERMISSIONS_ID', 1069); |
||
205 | define('RES_SET_INITIAL_ID', 1070); |
||
206 | define('RES_ALLOWED_ID', 1071); |
||
207 | define('RES_FIELDS_ID', 1072); |
||
208 | define('RES_FIELD_INFO_ID', 1073); |
||
209 | define('RES_ORDER_ID', 1074); |
||
210 | define('RES_FIELD_NAME_ID', 1075); |
||
211 | define('RES_FIELD_TYPE_ID', 1076); |
||
212 | define('RES_NUMBER_ID', 1077); |
||
213 | define('RES_STRING_ID', 1078); |
||
214 | define('RES_MULTILINED_TEXT_ID', 1079); |
||
215 | define('RES_REQUIRED_ID', 1080); |
||
216 | define('RES_YES_ID', 1081); |
||
217 | define('RES_NO_ID', 1082); |
||
218 | define('RES_MIN_VALUE_ID', 1083); |
||
219 | define('RES_MAX_VALUE_ID', 1084); |
||
220 | define('RES_MAX_LENGTH_ID', 1085); |
||
221 | define('RES_REQUIRED2_ID', 1086); |
||
222 | define('RES_NEW_FIELD_ID', 1087); |
||
223 | define('RES_FIELD_X_ID', 1088); |
||
224 | define('RES_READ_ONLY_ID', 1089); |
||
225 | define('RES_READ_AND_WRITE_ID', 1090); |
||
226 | define('RES_GENERAL_INFO_ID', 1091); |
||
227 | define('RES_ID_ID', 1092); |
||
228 | define('RES_PROJECT_ID', 1093); |
||
229 | define('RES_TEMPLATE_ID', 1094); |
||
230 | define('RES_STATE_ID', 1095); |
||
231 | define('RES_AGE_ID', 1096); |
||
232 | define('RES_NEW_RECORD_ID', 1097); |
||
233 | define('RES_RECORD_X_ID', 1098); |
||
234 | define('RES_MY_RECORDS_ID', 1099); |
||
235 | define('RES_HISTORY_ID', 1100); |
||
236 | define('RES_POSTPONE_ID', 1101); |
||
237 | define('RES_RESUME_ID', 1102); |
||
238 | define('RES_ASSIGN2_ID', 1103); |
||
239 | define('RES_CHANGE_STATE_ID', 1104); |
||
240 | define('RES_TIMESTAMP_ID', 1105); |
||
241 | define('RES_ORIGINATOR_ID', 1106); |
||
242 | define('RES_EVENT_RECORD_CREATED_ID', 1107); |
||
243 | define('RES_EVENT_RECORD_ASSIGNED_ID', 1108); |
||
244 | define('RES_EVENT_RECORD_MODIFIED_ID', 1109); |
||
245 | define('RES_EVENT_RECORD_STATE_CHANGED_ID', 1110); |
||
246 | define('RES_EVENT_RECORD_POSTPONED_ID', 1111); |
||
247 | define('RES_EVENT_RECORD_RESUMED_ID', 1112); |
||
248 | define('RES_EVENT_FILE_ATTACHED_ID', 1113); |
||
249 | define('RES_EVENT_FILE_REMOVED_ID', 1114); |
||
250 | define('RES_PERMIT_CREATE_RECORD_ID', 1115); |
||
251 | define('RES_PERMIT_MODIFY_RECORD_ID', 1116); |
||
252 | define('RES_PERMIT_POSTPONE_RECORD_ID', 1117); |
||
253 | define('RES_PERMIT_RESUME_RECORD_ID', 1118); |
||
254 | define('RES_PERMIT_REASSIGN_RECORD_ID', 1119); |
||
255 | define('RES_PERMIT_REOPEN_RECORD_ID', 1120); |
||
256 | define('RES_PERMIT_ATTACH_FILES_ID', 1121); |
||
257 | define('RES_PERMIT_REMOVE_FILES_ID', 1122); |
||
258 | define('RES_LANGUAGE_ID', 1123); |
||
259 | define('RES_ADD_COMMENT_ID', 1124); |
||
260 | define('RES_EVENT_COMMENT_ADDED_ID', 1125); |
||
261 | define('RES_PERMIT_ADD_COMMENTS_ID', 1126); |
||
262 | define('RES_COMMENT_ID', 1127); |
||
263 | define('RES_ATTACH_FILE_ID', 1128); |
||
264 | define('RES_REMOVE_FILE_ID', 1129); |
||
265 | define('RES_ATTACHMENT_ID', 1130); |
||
266 | define('RES_ATTACHMENT_NAME_ID', 1131); |
||
267 | define('RES_ATTACHMENT_FILE_ID', 1132); |
||
268 | define('RES_ATTACHMENTS_ID', 1133); |
||
269 | define('RES_NO_FIELDS_ID', 1134); |
||
270 | define('RES_CRITICAL_AGE_ID', 1135); |
||
271 | define('RES_FROZEN_TIME_ID', 1136); |
||
272 | define('RES_CHANGES_ID', 1137); |
||
273 | define('RES_OLD_VALUE_ID', 1138); |
||
274 | define('RES_NEW_VALUE_ID', 1139); |
||
275 | define('RES_CHECKBOX_ID', 1140); |
||
276 | define('RES_RECORD_ID', 1141); |
||
277 | define('RES_LIST_ID', 1142); |
||
278 | define('RES_LIST_ITEMS_ID', 1143); |
||
279 | define('RES_KB_ID', 1144); |
||
280 | define('RES_FILTERS_ID', 1145); |
||
281 | define('RES_FILTER_NAME_ID', 1146); |
||
282 | define('RES_ALL_PROJECTS_ID', 1147); |
||
283 | define('RES_ALL_TEMPLATES_ID', 1148); |
||
284 | define('RES_ALL_STATES_ID', 1149); |
||
285 | define('RES_VIEW_RECORD_ID', 1150); |
||
286 | define('RES_SHOW_CREATED_BY_ONLY_ID', 1151); |
||
287 | define('RES_SHOW_ASSIGNED_TO_ONLY_ID', 1152); |
||
288 | define('RES_SHOW_UNCLOSED_ONLY_ID', 1153); |
||
289 | define('RES_SUBJECT_ID', 1154); |
||
290 | define('RES_SEARCH_ID', 1155); |
||
291 | define('RES_SEARCH_PARAMETERS_ID', 1156); // reserved |
||
292 | define('RES_SEARCH_RESULTS_ID', 1157); |
||
293 | define('RES_TEXT_TO_BE_SEARCHED_ID', 1158); // reserved |
||
294 | define('RES_SEARCH_IN_FIELDS_ID', 1159); // reserved |
||
295 | define('RES_SEARCH_IN_COMMENTS_ID', 1160); // reserved |
||
296 | define('RES_STATUS_ID', 1161); |
||
297 | define('RES_ACTIVE_ID', 1162); |
||
298 | define('RES_SUBSCRIPTIONS_ID', 1163); |
||
299 | define('RES_NOTIFY_RECORD_CREATED_ID', 1164); |
||
300 | define('RES_NOTIFY_RECORD_ASSIGNED_ID', 1165); |
||
301 | define('RES_NOTIFY_RECORD_MODIFIED_ID', 1166); |
||
302 | define('RES_NOTIFY_RECORD_STATE_CHANGED_ID', 1167); |
||
303 | define('RES_NOTIFY_RECORD_POSTPONED_ID', 1168); |
||
304 | define('RES_NOTIFY_RECORD_RESUMED_ID', 1169); |
||
305 | define('RES_NOTIFY_COMMENT_ADDED_ID', 1170); |
||
306 | define('RES_NOTIFY_FILE_ATTACHED_ID', 1171); |
||
307 | define('RES_NOTIFY_FILE_REMOVED_ID', 1172); |
||
308 | define('RES_REQUIRED3_ID', 1173); |
||
309 | define('RES_POSTPONED_ID', 1174); |
||
310 | define('RES_DUEDATE_ID', 1175); |
||
311 | define('RES_DEFAULT_VALUE_ID', 1176); |
||
312 | define('RES_ON_ID', 1177); |
||
313 | define('RES_OFF_ID', 1178); |
||
314 | define('RES_METRICS_ID', 1179); |
||
315 | define('RES_OPENED_RECORDS_ID', 1180); |
||
316 | define('RES_CREATION_VS_CLOSURE_ID', 1181); |
||
317 | define('RES_WEEK_ID', 1182); |
||
318 | define('RES_NUMBER2_ID', 1183); |
||
319 | define('RES_CLONE_ID', 1184); |
||
320 | define('RES_EVENT_RECORD_CLONED_ID', 1185); |
||
321 | define('RES_LOGOUT_ID', 1186); |
||
322 | define('RES_NOTIFY_RECORD_CLONED_ID', 1187); |
||
323 | define('RES_SETTINGS_ID', 1188); |
||
324 | define('RES_ROWS_PER_PAGE_ID', 1189); |
||
325 | define('RES_BOOKMARKS_PER_PAGE_ID', 1190); |
||
326 | define('RES_LOCK_ID', 1191); |
||
327 | define('RES_UNLOCK_ID', 1192); |
||
328 | define('RES_GROUP_TYPE_ID', 1193); |
||
329 | define('RES_GLOBAL_ID', 1194); |
||
330 | define('RES_LOCAL_ID', 1195); |
||
331 | define('RES_CONFIGURATION_ID', 1196); |
||
332 | define('RES_LINE_ID', 1197); |
||
333 | define('RES_WEBROOT_ID', 1198); |
||
334 | define('RES_SECURITY_ID', 1199); |
||
335 | define('RES_MIN_PASSWORD_LENGTH_ID', 1200); |
||
336 | define('RES_LOCKS_COUNT_ID', 1201); |
||
337 | define('RES_LOCKS_TIMEOUT_ID', 1202); |
||
338 | define('RES_DATABASE_ID', 1203); |
||
339 | define('RES_DATABASE_TYPE_ID', 1204); |
||
340 | define('RES_ORACLE_ID', 1205); |
||
341 | define('RES_MYSQL_ID', 1206); |
||
342 | define('RES_MSSQL_ID', 1207); |
||
343 | define('RES_DATABASE_SERVER_ID', 1208); |
||
344 | define('RES_DATABASE_NAME_ID', 1209); |
||
345 | define('RES_DATABASE_USER_ID', 1210); |
||
346 | define('RES_ACTIVE_DIRECTORY_ID', 1211); |
||
347 | define('RES_LDAP_SERVER_ID', 1212); |
||
348 | define('RES_PORT_NUMBER_ID', 1213); |
||
349 | define('RES_SEARCH_ACCOUNT_ID', 1214); |
||
350 | define('RES_BASE_DN_ID', 1215); |
||
351 | define('RES_ADMINISTRATORS_ID', 1216); |
||
352 | define('RES_EMAIL_NOTIFICATIONS_ID', 1217); |
||
353 | define('RES_MAX_SIZE_ID', 1218); |
||
354 | define('RES_DEBUG_ID', 1219); |
||
355 | define('RES_DEBUG_MODE_ID', 1220); |
||
356 | define('RES_DEBUG_MODE_TRACE_ID', 1221); |
||
357 | define('RES_DEBUG_MODE_FULL_ID', 1222); |
||
358 | define('RES_DEBUG_LOGS_ID', 1223); |
||
359 | define('RES_ENABLED2_ID', 1224); |
||
360 | define('RES_DISABLED2_ID', 1225); |
||
361 | define('RES_DECIMAL_ID', 1226); |
||
362 | define('RES_PERMIT_VIEW_RECORDS_ONLY_ID', 1227); |
||
363 | define('RES_SELECT_ALL_ID', 1228); |
||
364 | define('RES_AUTHOR_ID', 1229); |
||
365 | define('RES_DATE_ID', 1230); |
||
366 | define('RES_DURATION_ID', 1231); |
||
367 | define('RES_SHOW_POSTPONED_ONLY_ID', 1232); |
||
368 | define('RES_SUBSCRIPTION_NAME_ID', 1233); |
||
369 | define('RES_EVENTS_ID', 1234); |
||
370 | define('RES_VERSION_X_ID', 1235); |
||
371 | define('RES_ROLE_ID', 1236); |
||
372 | define('RES_SUBSCRIBE_ID', 1237); |
||
373 | define('RES_UNSUBSCRIBE_ID', 1238); |
||
374 | define('RES_REMINDERS_ID', 1239); |
||
375 | define('RES_REMINDER_NAME_ID', 1240); |
||
376 | define('RES_REMINDER_SUBJECT_ID', 1241); |
||
377 | define('RES_REMINDER_RECIPIENTS_ID', 1242); |
||
378 | define('RES_NEW_REMINDER_ID', 1243); |
||
379 | define('RES_REMINDER_X_ID', 1244); |
||
380 | define('RES_PERMIT_SEND_REMINDERS_ID', 1245); |
||
381 | define('RES_SEND_ID', 1246); |
||
382 | define('RES_NEW_FILTER_ID', 1247); |
||
383 | define('RES_FILTER_X_ID', 1248); |
||
384 | define('RES_NEW_SUBSCRIPTION_ID', 1249); |
||
385 | define('RES_SUBSCRIPTION_X_ID', 1250); |
||
386 | define('RES_ROWS_MULTILINED_TEXT_ID', 1251); |
||
387 | define('RES_LINK_TO_ANOTHER_RECORD_ID', 1252); |
||
388 | define('RES_SHOW_MOVED_TO_STATES_ONLY_ID', 1253); |
||
389 | define('RES_SHARE_WITH_ID', 1254); |
||
390 | define('RES_EXPORT_ID', 1255); |
||
391 | define('RES_SUBSCRIBE_OTHERS_ID', 1256); |
||
392 | define('RES_SUBSCRIBED_ID', 1257); |
||
393 | define('RES_SUBJECT_SUBSCRIBED_ID', 1258); |
||
394 | define('RES_SUBJECT_UNSUBSCRIBED_ID', 1259); |
||
395 | define('RES_CARBON_COPY_ID', 1260); |
||
396 | define('RES_STORAGE_ID', 1261); |
||
397 | define('RES_LDAP_ATTRIBUTE_ID', 1262); |
||
398 | define('RES_VIEWS_ID', 1263); |
||
399 | define('RES_CLOSE_ID', 1264); |
||
400 | define('RES_VIEW_NAME_ID', 1265); |
||
401 | define('RES_NEW_VIEW_ID', 1266); |
||
402 | define('RES_VIEW_X_ID', 1267); |
||
403 | define('RES_NO_VIEW_ID', 1268); |
||
404 | define('RES_SET_ID', 1269); |
||
405 | define('RES_COLUMNS_ID', 1270); |
||
406 | define('RES_WARNING_ID', 1271); |
||
407 | define('RES_INFORMATION_ID', 1272); |
||
408 | define('RES_ERROR_ID', 1273); |
||
409 | define('RES_QUESTION_ID', 1274); |
||
410 | define('RES_ALIGNMENT_ID', 1275); // reserved |
||
411 | define('RES_LEFT_ID', 1276); // reserved |
||
412 | define('RES_CENTER_ID', 1277); // reserved |
||
413 | define('RES_RIGHT_ID', 1278); // reserved |
||
414 | define('RES_BANNER_ID', 1279); |
||
415 | define('RES_ALL_ASSIGNED_TO_ME_ID', 1280); |
||
416 | define('RES_ALL_CREATED_BY_ME_ID', 1281); |
||
417 | define('RES_SHOW_IN_EMAILS_ID', 1282); |
||
418 | define('RES_PLEASE_WAIT_ID', 1283); |
||
419 | define('RES_DUMP_ID', 1284); |
||
420 | define('RES_SUBRECORDS_ID', 1285); |
||
421 | define('RES_CREATE_SUBRECORD_ID', 1286); |
||
422 | define('RES_ATTACH_SUBRECORD_ID', 1287); |
||
423 | define('RES_REMOVE_SUBRECORD_ID', 1288); |
||
424 | define('RES_AUTO_REFRESH_ID', 1289); |
||
425 | define('RES_EVENT_SUBRECORD_ADDED_ID', 1290); |
||
426 | define('RES_EVENT_SUBRECORD_REMOVED_ID', 1291); |
||
427 | define('RES_PERMIT_ADD_SUBRECORDS_ID', 1292); |
||
428 | define('RES_PERMIT_REMOVE_SUBRECORDS_ID', 1293); |
||
429 | define('RES_NOTIFY_SUBRECORD_ADDED_ID', 1294); |
||
430 | define('RES_NOTIFY_SUBRECORD_REMOVED_ID', 1295); |
||
431 | define('RES_CREATED_RECORDS_ID', 1296); |
||
432 | define('RES_CLOSED_RECORDS_ID', 1297); |
||
433 | define('RES_CONFIDENTIAL_ID', 1298); |
||
434 | define('RES_ADD_CONFIDENTIAL_COMMENT_ID', 1299); |
||
435 | define('RES_PERMIT_CONFIDENTIAL_COMMENTS_ID', 1300); |
||
436 | define('RES_EVENT_CONFIDENTIAL_COMMENT_ADDED_ID', 1301); |
||
437 | define('RES_PARENT_ID_ID', 1302); |
||
438 | define('RES_DEPENDENCY_ID', 1303); |
||
439 | define('RES_TIMEZONE_ID', 1304); |
||
440 | define('RES_ADD_SEPARATOR_ID', 1305); |
||
441 | define('RES_CSV_DELIMITER_ID', 1306); |
||
442 | define('RES_CSV_ENCODING_ID', 1307); |
||
443 | define('RES_CSV_LINE_ENDINGS_ID', 1308); |
||
444 | define('RES_NOTIFY_RECORD_REOPENED_ID', 1309); |
||
445 | define('RES_ENABLE_FILTERS_ID', 1310); |
||
446 | define('RES_DISABLE_FILTERS_ID', 1311); |
||
447 | define('RES_UNUSED_1312_ID', 1312); |
||
448 | define('RES_UNUSED_1313_ID', 1313); |
||
449 | define('RES_UNUSED_1314_ID', 1314); |
||
450 | define('RES_UNUSED_1315_ID', 1315); |
||
451 | define('RES_UNUSED_1316_ID', 1316); |
||
452 | define('RES_UNUSED_1317_ID', 1317); |
||
453 | define('RES_UNUSED_1318_ID', 1318); |
||
454 | define('RES_EXPAND_ALL_ID', 1319); // reserved |
||
455 | define('RES_COLLAPSE_ALL_ID', 1320); // reserved |
||
456 | define('RES_EVENT_RECORD_REOPENED_ID', 1321); |
||
457 | define('RES_LAST_EVENT_ID', 1322); |
||
458 | define('RES_REGEX_CHECK_ID', 1323); |
||
459 | define('RES_REGEX_SEARCH_ID', 1324); |
||
460 | define('RES_REGEX_REPLACE_ID', 1325); |
||
461 | define('RES_NEXT_STATE_BY_DEFAULT_ID', 1326); |
||
462 | define('RES_POSTPONE_STATUS_ID', 1327); |
||
463 | define('RES_SHOW_ALL_ID', 1328); |
||
464 | define('RES_SHOW_ACTIVE_ONLY_ID', 1329); |
||
465 | define('RES_EVENT_ID', 1330); |
||
466 | define('RES_REOPEN_ID', 1331); |
||
467 | define('RES_GUEST_ACCESS_ID', 1332); |
||
468 | define('RES_NONE2_ID', 1333); |
||
469 | define('RES_GLOBAL_GROUPS_ID', 1334); |
||
470 | define('RES_GUEST_ID', 1335); |
||
471 | define('RES_IMPORT_ID', 1336); |
||
472 | define('RES_PERMIT_DELETE_RECORD_ID', 1337); |
||
473 | define('RES_UNUSED_1338_ID', 1338); |
||
474 | define('RES_DEFAULT_LANGUAGE_ID', 1339); |
||
475 | define('RES_PASSWORD_EXPIRATION_ID', 1340); |
||
476 | define('RES_SESSION_EXPIRATION_ID', 1341); |
||
477 | define('RES_LDAP_ENUMERATION_ID', 1342); |
||
478 | define('RES_POSTGRESQL_ID', 1343); |
||
479 | define('RES_LIST_INDEXES_ID', 1344); |
||
480 | define('RES_LIST_VALUES_ID', 1345); |
||
481 | define('RES_CREATED_ID', 1346); |
||
482 | define('RES_MARK_AS_READ_ID', 1347); |
||
483 | define('RES_REGISTERED_ID', 1348); |
||
484 | define('RES_TLS_ID', 1349); |
||
485 | define('RES_COMPRESSION_ID', 1350); |
||
486 | define('RES_LAST_STATE_ID', 1351); |
||
487 | define('RES_COMMENTS_ID', 1352); |
||
488 | define('RES_SIZE_ID', 1353); |
||
489 | define('RES_APPEARANCE_ID', 1354); |
||
490 | define('RES_CSV_ID', 1355); |
||
491 | define('RES_ENABLE_ID', 1356); |
||
492 | define('RES_DISABLE_ID', 1357); |
||
493 | define('RES_PREVIEW_ID', 1358); |
||
494 | define('RES_OWNER_ID', 1359); |
||
495 | define('RES_ANYONE_ID', 1360); |
||
496 | define('RES_MARK_AS_UNREAD_ID', 1361); |
||
497 | define('RES_PARENT_RECORDS_ID', 1362); |
||
498 | /**#@-*/ |
||
499 | |||
500 | ?> |
||
0 ignored issues
–
show
|
|||
501 |
Using a closing tag in PHP files that only contain PHP code is not recommended as you might accidentally add whitespace after the closing tag which would then be output by PHP. This can cause severe problems, for example headers cannot be sent anymore.
A simple precaution is to leave off the closing tag as it is not required, and it also has no negative effects whatsoever.