This repository has been archived by the owner on Jun 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
ext_tables_static+adt.sql
512 lines (509 loc) · 246 KB
/
ext_tables_static+adt.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
#
# Table structure for table 'tx_smoothmigration_domain_model_deprecation'
#
DROP TABLE IF EXISTS tx_smoothmigration_domain_model_deprecation;
CREATE TABLE tx_smoothmigration_domain_model_deprecation (
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
file mediumtext,
class varchar(255) DEFAULT '',
interface varchar(255) DEFAULT '',
method varchar(255) DEFAULT '',
message mediumtext,
is_static int(1) unsigned DEFAULT '0' NOT NULL,
visibility varchar(10) DEFAULT '',
deprecated_since_version varchar(10) DEFAULT '',
removed_in_version varchar(10) DEFAULT '',
replacement_class varchar(255) DEFAULT '',
replacement_interface varchar(255) DEFAULT '',
replacement_method varchar(255) DEFAULT '',
regex_search varchar(255) DEFAULT '',
regex_replace varchar(255) DEFAULT '',
no_brainer int(1) unsigned DEFAULT '0' NOT NULL,
replacement_message mediumtext,
PRIMARY KEY (uid),
KEY parent (pid)
);
-- TODO: new dump with new table structure
#
# All deprecated functions gleaned from TYPO3 version 4.4 to 6.2
#
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (1, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'searchQuery', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS["TYPO3_DB"]->searchQuery() directly!', 1, 'public', '3.6', '4.6', '$GLOBALS["TYPO3_DB"]', '', 'searchQuery', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (2, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'listQuery', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS["TYPO3_DB"]->listQuery() directly!', 1, 'public', '3.6', '4.6', '$GLOBALS["TYPO3_DB"]', '', 'listQuery', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (3, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'mm_query', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS["TYPO3_DB"]->exec_SELECT_mm_query() instead since that will return the result pointer while this returns the query. Using this function may make your application less fitted for DBAL later.', 1, 'public', '3.6', '4.6', '$GLOBALS["TYPO3_DB"]', '', 'exec_SELECT_mm_query', 0, '$GLOBALS["TYPO3_DB"]->exec_SELECT_mm_query() will return the result pointer instead of the query.');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (4, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'DBcompileInsert', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS["TYPO3_DB"]->exec_INSERTquery() directly!', 1, 'public', '3.6', '4.6', '$GLOBALS["TYPO3_DB"]', '', 'exec_INSERTquery', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (5, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'DBcompileUpdate', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS["TYPO3_DB"]->exec_UPDATEquery() directly!', 1, 'public', '3.6', '4.6', '$GLOBALS["TYPO3_DB"]', '', 'exec_UPDATEquery', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (6, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'titleAttrib', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6 - The idea made sense with older browsers, but now all browsers should support the "title" attribute - so just hardcode the title attribute instead!', 1, 'public', '3.6', '4.6', '', '', '', 0, 'Hardcode the title attribute instead of using this method.');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (7, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'getSetUpdateSignal', '@deprecated since TYPO3 4.2, this function will be removed in TYPO3 4.6, use the setUpdateSignal function instead, as it allows you to add more parameters', 1, 'public', '4.2', '4.6', 't3lib_BEfunc', '', 'setUpdateSignal', 1, 'setUpdateSignal allows you to set more parameters.');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (8, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'typo3PrintError', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - use RuntimeException from now on', 1, 'public', '4.5', '4.7', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (9, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'getListOfBackendModules', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6.', 1, 'public', '3.6', '4.6', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (10, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'GPvar', '@deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 - Use t3lib_div::_GP instead (ALWAYS delivers a value with un-escaped values!)', 1, 'public', '3.6', '4.6', 't3lib_div', '', '_GP', 1, 'TODO: Strip off second parameter from call if used.');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (11, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'GParrayMerged', '@deprecated since TYPO3 3.7, will be removed in TYPO3 4.6 - Use t3lib_div::_GPmerged instead', 1, 'public', '3.7', '4.6', 't3lib_div', '', '_GPmerged', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (12, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'fixed_lgd', '@deprecated since TYPO3 4.1, will be removed in TYPO3 4.6 - Works ONLY for single-byte charsets! Use t3lib_div::fixed_lgd_cs() instead', 1, 'public', '4.1', '4.6', 't3lib_div', '', 'fixed_lgd_cs', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (13, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'fixed_lgd_pre', '@deprecated since TYPO3 4.1, will be removed in TYPO3 4.6 - Use t3lib_div::fixed_lgd_cs() instead (with negative input value for $chars)', 1, 'public', '4.1', '4.6', 't3lib_div', '', 'fixed_lgd_cs', 0, 'The second parameter ''$chars'' needs to be made negative.');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (14, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'breakTextForEmail', '@deprecated since TYPO3 4.1, will be removed in TYPO3 4.6 - Use PHP function wordwrap()', 1, 'public', '4.1', '4.6', '', '', '', 0, 'The order of the parameters has changed.');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (15, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'rm_endcomma', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Use rtrim() directly', 1, 'public', '4.5', '4.7', '', '', 'rtrim', 0, 'Replace with rtrim([parameter], '','');');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (16, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'danish_strtoupper', '@deprecated since TYPO3 3.5, will be removed in TYPO3 4.6 - Use t3lib_cs::conv_case() instead or for HTML output, wrap your content in <span class="uppercase">...</span>)', 1, 'public', '3.5', '4.6', 't3lib_cs', '', 'conv_case', 0, 'conv_case takes trhee parameters.');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (17, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'convUmlauts', '@deprecated since TYPO3 4.1, will be removed in TYPO3 4.6 - Works only for western europe single-byte charsets! Use t3lib_cs::specCharsToASCII() instead!', 1, 'public', '4.1', '4.6', 't3lib_cs', '', 'specCharsToASCII', 0, 'specCharsToASCII takes two parameters.');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (18, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'uniqueArray', '@deprecated since TYPO3 3.5, will be removed in TYPO3 4.6 - Use the PHP function array_unique instead', 1, 'public', '3.5', '4.6', '', '', 'array_unique', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (19, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'array2json', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - use PHP native function json_encode() instead, will be removed in TYPO3 4.5', 1, 'public', '4.3', '4.5', '', '', 'json_encode', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (20, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'implodeParams', '@deprecated since TYPO3 3.7, will be removed in TYPO3 4.6 - Name was changed into implodeAttributes', 1, 'public', '3.7', '4.6', 't3lib_div', '', 'implodeAttributes', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (21, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'debug_ordvalue', '@deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::ordinalValue instead', 1, 'public', '4.5', '', 't3lib_utility_Debug', '', 'ordinalValue', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (22, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'view_array', '@deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::viewArray instead', 1, 'public', '4.5', '', 't3lib_utility_Debug', '', 'viewArray', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (23, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'print_array', '@deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::printArray instead', 1, 'public', '4.5', '', 't3lib_utility_Debug', '', 'printArray', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (24, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'debug', '@deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::debug instead', 1, 'public', '4.5', '', 't3lib_utility_Debug', '', 'debug', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (25, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'debug_trail', '@deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::debugTrail instead', 1, 'public', '4.5', '', 't3lib_utility_Debug', '', 'debugTrail', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (26, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'debugRows', '@deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::debugRows instead', 1, 'public', '4.5', '', 't3lib_utility_Debug', '', 'debugRows', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, regex_search, regex_replace, no_brainer, replacement_message) VALUES (27, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'makeInstanceClassName', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - Use t3lib_div::makeInstance(''myClass'', $arg1, $arg2, ..., $argN)', 1, 'public', '4.3', '4.6', '', '', '', '/(\\$[^\\s]+)\\s*=\\s*t3lib_div::makeInstanceClassName\\(([^)]+)\\);\\s*(\\$[^\\s=]+)\\s*=\\s*new\\s*\\1\\s*\\(/si', '$3 = \\TYPO3\\CMS\\Core\\Utility\\GeneralUtility::makeInstance($2, ', 2, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (28, 'typo3/sysext/em/classes/tools/class.tx_em_tools.php', 'tx_em_Tools', '', 'getArrayFromLocallang', '@deprecated since TYPO3 4.5.1, will be removed in TYPO3 4.7 - use pageRenderer->addInlineLanguageLabelFile() instead', 1, 'public', '4.5.1', '4.7', 'pageRenderer', '', 'addInlineLanguageLabelFile', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (29, 'typo3/sysext/extbase/Classes/Dispatcher.php', 'Tx_Extbase_Dispatcher', '', 'getConfigurationManager', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 1, 'public', '1.3.0', '1.5.0', '', '', '', 0, 'If you used Tx_Extbase_Dispatcher before in your own code, it should still work, but it is deprecated. Instead, instead OLD: Tx_Extbase_Dispatcher::getConfigurationManager() NEW: inject Tx_Extbase_Configuration_ConfigurationManagerInterface into your class OLD: Tx_Extbase_Dispatcher::getPersistenceManager() NEW: inject Tx_Extbase_Persistence_ManagerInterface into your class OLD: Tx_Extbase_Dispatcher::getExtbaseFrameworkConfiguration() NEW: inject Tx_Extbase_Configuration_ConfigurationManagerInterface into your class, and call $configurationManager->getConfiguration(Tx_Extbase_Configuration_ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK); on the ConfigurationManager. ');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (30, 'typo3/sysext/extbase/Classes/Dispatcher.php', 'Tx_Extbase_Dispatcher', '', 'getPersistenceManager', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 1, 'public', '1.3.0', '1.5.0', '', '', '', 0, 'If you used Tx_Extbase_Dispatcher before in your own code, it should still work, but it is deprecated. Instead, instead OLD: Tx_Extbase_Dispatcher::getConfigurationManager() NEW: inject Tx_Extbase_Configuration_ConfigurationManagerInterface into your class OLD: Tx_Extbase_Dispatcher::getPersistenceManager() NEW: inject Tx_Extbase_Persistence_ManagerInterface into your class OLD: Tx_Extbase_Dispatcher::getExtbaseFrameworkConfiguration() NEW: inject Tx_Extbase_Configuration_ConfigurationManagerInterface into your class, and call $configurationManager->getConfiguration(Tx_Extbase_Configuration_ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK); on the ConfigurationManager. ');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (31, 'typo3/sysext/extbase/Classes/Dispatcher.php', 'Tx_Extbase_Dispatcher', '', 'getExtbaseFrameworkConfiguration', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 1, 'public', '1.3.0', '1.5.0', '', '', '', 0, 'If you used Tx_Extbase_Dispatcher before in your own code, it should still work, but it is deprecated. Instead, instead OLD: Tx_Extbase_Dispatcher::getConfigurationManager() NEW: inject Tx_Extbase_Configuration_ConfigurationManagerInterface into your class OLD: Tx_Extbase_Dispatcher::getPersistenceManager() NEW: inject Tx_Extbase_Persistence_ManagerInterface into your class OLD: Tx_Extbase_Dispatcher::getExtbaseFrameworkConfiguration() NEW: inject Tx_Extbase_Configuration_ConfigurationManagerInterface into your class, and call $configurationManager->getConfiguration(Tx_Extbase_Configuration_ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK); on the ConfigurationManager. ');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (32, 'typo3/sysext/extbase/Classes/Reflection/ObjectAccess.php', 'Tx_Extbase_Reflection_ObjectAccess', '', 'getAccessiblePropertyNames', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Please use getGettablePropertyNames() instead', 1, 'public', '1.3.0', '1.5.0', 'Tx_Extbase_Reflection_ObjectAccess', '', 'getGettablePropertyNames', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (33, 'typo3/sysext/extbase/Classes/Reflection/ObjectAccess.php', 'Tx_Extbase_Reflection_ObjectAccess', '', 'getAccessibleProperties', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Please use getGettableProperties() instead', 1, 'public', '1.3.0', '1.5.0', 'Tx_Extbase_Reflection_ObjectAccess', '', 'getGettableProperties', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (34, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'convertCamelCaseToLowerCaseUnderscored', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 1, 'public', '1.3.0', '1.5.0', 't3lib_div', '', 'camelCaseToLowerCaseUnderscored', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (35, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'convertUnderscoredToLowerCamelCase', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 1, 'public', '1.3.0', '1.5.0', 't3lib_div', '', 'underscoredToLowerCamelCase', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (36, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'convertLowerUnderscoreToUpperCamelCase', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 1, 'public', '1.3.0', '1.5.0', 't3lib_div', '', 'underscoredToUpperCamelCase', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (37, 't3lib/class.gzip_encode.php', 'gzip_encode', '', 'gzip_encode', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we''re using the "ob_gzhandler" for compression now.', 0, '', '4.3', '4.6', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (38, 't3lib/class.gzip_encode.php', 'gzip_encode', '', 'gzip_accepted', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we''re using the "ob_gzhandler" for compression now.', 0, '', '4.3', '4.6', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (39, 't3lib/class.gzip_encode.php', 'gzip_encode', '', 'get_complevel', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we''re using the "ob_gzhandler" for compression now.', 0, '', '4.3', '4.6', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (40, 't3lib/class.gzip_encode.php', 'gzip_encode', '', 'linux_loadavg', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we''re using the "ob_gzhandler" for compression now.', 0, '', '4.3', '4.6', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (41, 't3lib/class.gzip_encode.php', 'gzip_encode', '', 'freebsd_loadavg', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we''re using the "ob_gzhandler" for compression now.', 0, '', '4.3', '4.6', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (42, 't3lib/class.t3lib_basicfilefunc.php', 't3lib_basicFileFunctions', '', 'formatSize', '@deprecated since at least TYPO3 4.2, will be removed in TYPO3 4.6 - Use t3lib_div::formatSize() instead', 1, '', '4.2', '4.6', 't3lib_div', '', 'formatSize', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (43, 't3lib/class.t3lib_beuserauth.php', 't3lib_beUserAuth', '', 'trackBeUser', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6.', 0, '', '3.6', '4.6', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (44, 't3lib/class.t3lib_db.php', 't3lib_DB', '', 'sql', '@deprecated since TYPO3 3.6, will be removed in TYPO3 4.6', 0, '', '3.6', '4.6', '', '', '', 0, 'Use sql_query instead, which does not take a $database as first parameter.');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (45, 't3lib/class.t3lib_htmlmail.php', 't3lib_htmlmail', '', 'quoted_printable', '@deprecated since TYPO3 4.0, will be removed in TYPO3 4.6', 1, 'public', '4.0', '4.6', 't3lib_div', '', 'quoted_printable', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (46, 't3lib/class.t3lib_htmlmail.php', 't3lib_htmlmail', '', 'convertName', '@deprecated since TYPO3 4.0, will be removed in TYPO3 4.6', 0, 'public', '4.0', '4.6', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (47, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getFieldDefinitions_sqlContent', '@deprecated since TYPO3 4.2, this function will be removed in TYPO3 4.6, use ->getFieldDefinitions_fileContent() instead!', 1, '', '4.2', '4.6', 't3lib_install', '', 'getFieldDefinitions_fileContent', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (48, 't3lib/class.t3lib_matchcondition.php', 't3lib_matchCondition', '', '__construct', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - The functionality was moved to t3lib_matchCondition_frontend', 1, '', '4.3', '4.6', 't3lib_matchCondition_frontend', '', '__construct', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (49, 't3lib/class.t3lib_matchcondition.php', 't3lib_matchCondition', '', 'browserInfo_version', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - use t3lib_utility_Client::getVersion() instead', 1, '', '4.3', '4.6', 't3lib_utility_Client', '', 'getVersion', 1, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (50, 't3lib/class.t3lib_sqlengine.php', 't3lib_sqlengine', '', 'init', '@deprecated since TYPO3 4.3, this class will be removed in TYPO3 4.5, it has been integrated to extension DBAL.', 0, '', '4.3', '4.5', '', '', '', 0, '');
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (52, 't3lib/class.t3lib_stdgraphic.php', 't3lib_stdGraphic', '', 'reduceColors', '@deprecated since TYPO3 4.4, this function will be removed in TYPO3 4.6.', 0, '', '4.4', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (53, 't3lib/class.t3lib_stdgraphic.php', 't3lib_stdGraphic', '', 'imageGif', '@deprecated since TYPO3 4.0, this function will be removed in TYPO3 4.6.', 0, '', '4.0', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (54, 't3lib/class.t3lib_stdgraphic.php', 't3lib_stdGraphic', '', 'imageCreateFromGif', '@deprecated since TYPO3 4.0, this function will be removed in TYPO3 4.6.', 0, '', '4.0', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (55, 't3lib/class.t3lib_stdgraphic.php', 't3lib_stdGraphic', '', 'imagecreate', '@deprecated since TYPO3 4.4, this function will be removed in TYPO3 4.6.', 0, '', '4.4', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (56, 't3lib/class.t3lib_tceforms.php', 't3lib_TCEforms', '', 'noTitle', '@deprecated since TYPO3 4.1, this function will be removed in TYPO3 4.6.', 0, '', '4.1', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (57, 't3lib/class.t3lib_tceforms.php', 't3lib_TCEforms', '', 'helpTextIcon', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (58, 't3lib/class.t3lib_tceforms.php', 't3lib_TCEforms', '', 'helpText', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (59, 't3lib/class.t3lib_tceforms.php', 't3lib_TCEforms', '', 'helpTextIcon_typeFlex', '@deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7. Use t3lib_BEfunc::wrapInHelp() instead.', 0, '', '4.5', '4.7', 't3lib_BEfunc', '', 'wrapInHelp', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (60, 't3lib/class.t3lib_tceforms.php', 't3lib_TCEforms', '', 'helpText_typeFlex', '@deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7. Use t3lib_BEfunc::wrapInHelp() instead.', 0, '', '4.5', '4.7', 't3lib_BEfunc', '', 'wrapInHelp', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (61, 't3lib/class.t3lib_tceforms_inline.php', 't3lib_TCEforms_inline', '', 'getNewRecordLink', '@deprecated since TYPO3 4.2.0-beta1, this function will be removed in TYPO3 4.6.', 0, '', '4.2.0', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (62, 't3lib/class.t3lib_tceforms_inline.php', 't3lib_TCEforms_inline', '', 'initForAJAX', '@deprecated since TYPO3 4.2.0-alpha3, this function will be removed in TYPO3 4.6.', 0, '', '4.2.0', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (63, 't3lib/class.t3lib_tceforms_inline.php', 't3lib_TCEforms_inline', '', 'getJSON', '@deprecated Since TYPO3 4.2: Moved to t3lib_div::array2json, will be removed in TYPO3 4.6', 0, '', '4.2:', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (64, 't3lib/class.t3lib_timetrack.php', 't3lib_timeTrack', '', 'mtime', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, use getDifferenceToStarttime() instead', 0, 'protected', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (65, 't3lib/class.t3lib_timetrack.php', 't3lib_timeTrack', '', 'convertMicrotime', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, use getMilliseconds() instead that expects microtime as float instead of a string', 0, 'public', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (66, 't3lib/class.t3lib_timetrack.php', 't3lib_timeTrack', '', 'debug_typo3PrintError', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - use RuntimeException from now on', 0, 'public', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (67, 't3lib/class.t3lib_tstemplate.php', 't3lib_TStemplate', '', 'procesIncludes', '@deprecated since TYPO3 4.4 - Method name misspelled. Use "processIncludes" instead! This function will be removed in TYPO3 4.6.', 0, 'public', '4.4', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (68, 't3lib/class.t3lib_tstemplate.php', 't3lib_TStemplate', '', 'checkFile', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6.', 0, '', '3.6', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (69, 't3lib/class.t3lib_userauth.php', 't3lib_userAuth', '', 'redirect', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6.', 0, '', '3.6', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (70, 't3lib/formprotection/class.t3lib_formprotection_backendformprotection.php', 't3lib_formprotection_BackendFormProtection', '', 'persistTokens', '@deprecated since TYPO3 4.5.3, will be removed in TYPO3 4.7', 0, 'public', '4.5.3', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (71, 't3lib/formprotection/class.t3lib_formprotection_disabledformprotection.php', 't3lib_formprotection_DisabledFormProtection', '', 'persistTokens', '@deprecated since TYPO3 4.5.3, will be removed in TYPO3 4.7', 0, 'public', '4.5.3', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (72, 't3lib/formprotection/class.t3lib_formprotection_installtoolformprotection.php', 't3lib_formprotection_InstallToolFormProtection', '', 'persistTokens', '@deprecated since TYPO3 4.5.3, will be removed in TYPO3 4.7', 0, 'public', '4.5.3', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (73, 't3lib/spritemanager/class.t3lib_spritemanager_spritegenerator.php', 't3lib_spritemanager_SpriteGenerator', '', '__construct', '@deprecated IE6 support will be dropped within 4.6 - then gifcopies are superflous', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (74, 't3lib/spritemanager/class.t3lib_spritemanager_spritegenerator.php', 't3lib_spritemanager_SpriteGenerator', '', 'setGenerateGifCopy', '@deprecated IE6 support will be dropped within 4.6 - then gifcopies are superflous', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (75, 'typo3/alt_clickmenu.php', 'clickMenu', '', 'DB_editPageHeader', '@deprecated since TYPO3 4.0, will be removed in TYPO3 4.6 - Use DB_editPageProperties instead', 0, '', '4.0', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (76, 'typo3/alt_menu.php', 'SC_alt_menu', '', 'init', '@deprecated since TYPO3 4.5, this file will be removed in TYPO3 4.7. The TYPO3 backend is using typo3/backend.php with less frames, which makes this file obsolete.', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (77, 'typo3/alt_menu_sel.php', 'SC_alt_menu_sel', '', 'main', '@deprecated since TYPO3 4.5, this file will be removed in TYPO3 4.7. The TYPO3 backend is using typo3/backend.php with less frames, which makes this file obsolete.', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (78, 'typo3/alt_palette.php', 'formRender', '', 'printPalette', '@deprecated since TYPO3 4.5, this file will be removed in TYPO3 4.7. The TYPO3 backend is using typo3/backend.php with less frames, which makes this file obsolete.', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (79, 'typo3/alt_toplogo.php', 'SC_alt_toplogo', '', 'main', '@deprecated since TYPO3 4.5, this file will be removed in TYPO3 4.7. The TYPO3 backend is using typo3/backend.php with less frames, which makes this file obsolete.', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (80, 'typo3/alt_topmenu_dummy.php', 'SC_alt_topmenu_dummy', '', 'main', '@deprecated since TYPO3 4.5, this file will be removed in TYPO3 4.7. The TYPO3 backend is using typo3/backend.php with less frames, which makes this file obsolete.', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (81, 'typo3/contrib/json/json.php', 'Services_JSON', '', '__construct', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.5', 0, '', '4.3', '4.5', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (82, 'typo3/contrib/RemoveXSS/RemoveXSS.php', 'RemoveXSS', '', 'RemoveXSS', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - use static call RemoveXSS::process() instead', 0, 'public', '4.3', '4.6', 'static call RemoveXSS', '', 'process()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (83, 'typo3/index.php', 'SC_index', '', 'makeLoginNews', '@deprecated $GLOBALS[''TYPO3_CONF_VARS''][''BE''][''loginNews''] is deprecated since 4.5. Use system news records instead.', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (84, 'typo3/index.php', 'SC_index', '', 'getHiddenFields', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - all the functionality was put in $this->startForm() and $this->addFields_hidden', 0, '', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (85, 'typo3/sysext/adodb/adodb/adodb-xmlschema.inc.php', 'dbObject', '', 'ParseSchemaFile', '@deprecated Replaced by adoSchema::ParseSchema() and adoSchema::ParseSchemaString()', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (86, 'typo3/sysext/adodb/adodb/adodb-xmlschema.inc.php', 'dbObject', '', 'Destroy', '@deprecated adoSchema now cleans up automatically.', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (87, 'typo3/sysext/adodb/adodb/adodb-xmlschema03.inc.php', 'dbObject', '', 'ParseSchemaFile', '@deprecated Replaced by adoSchema::ParseSchema() and adoSchema::ParseSchemaString()', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (88, 'typo3/sysext/adodb/adodb/adodb-xmlschema03.inc.php', 'dbObject', '', 'Destroy', '@deprecated adoSchema now cleans up automatically.', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (89, 'typo3/sysext/adodb/adodb/adodb.inc.php', 'library', '', 'ADOLoadDB', '@deprecated', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (90, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'infoGif', '@deprecated since TYPO3 4.4, this function will be removed in TYPO3 4.6', 0, '', '4.4', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (91, 'typo3/sysext/cms/tslib/class.tslib_content.php', 'tslib_cObj', '', 'bytes', '@deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 - Use t3lib_div::formatSize() instead', 0, '', '3.6', '4.6', 't3lib_div', '', 'formatSize', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (92, 'typo3/sysext/cms/tslib/class.tslib_content.php', 'tslib_cObj', '', 'checkEmail', '@deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 - Use t3lib_div::validEmail() instead', 0, '', '3.6', '4.6', 't3lib_div', '', 'validEmail', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (93, 'typo3/sysext/cms/tslib/class.tslib_content.php', 'tslib_cObj', '', 'whereSelectFromList', '@deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 - Use $GLOBALS["TYPO3_DB"]->listQuery() directly!', 0, '', '3.6', '4.6', '$GLOBALS["TYPO3_DB"]', '', 'listQuery', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (94, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'uniqueHash', '@deprecated since TYPO3 3.5 - use additionalJavaScript instead.', 0, '', '3.5', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (96, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'connectToMySQL', '@deprecated since TYPO3 3.8, this function will be removed in TYPO3 4.6, use connectToDB() instead!', 0, '', '3.8', '4.6', 'tslib_fe', '', 'connectToDB', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (97, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'idPartsAnalyze', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.5, please use the "simulatestatic" sysext directly', 0, '', '4.3', '4.5', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (98, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'makeSimulFileName', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, please use the "simulatestatic" sysext directly', 0, '', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (99, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'simulateStaticDocuments_pEnc_onlyP_proc', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, please use the "simulatestatic" sysext directly', 0, '', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (100, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'getSimulFileName', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, please use the "simulatestatic" sysext directly', 0, '', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (101, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'setSimulReplacementChar', '@deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, please use the "simulatestatic" sysext directly', 0, '', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (102, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'fileNameASCIIPrefix', '@deprecated since TYPO3, 4.3, will be removed in TYPO3 4.6, please use the "simulatestatic" sysext directly', 0, '', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (103, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'make_seed', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, the random number generator is seeded automatically since PHP 4.2.0', 0, '', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (104, 'typo3/sysext/cms/tslib/class.tslib_fetce.php', 'tslib_feTCE', '', 'start', '@deprecated since TYPO3 3.6', 0, '', '3.6', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (105, 'typo3/sysext/cms/tslib/class.tslib_menu.php', 'tslib_menu', '', 'includeMakeMenu', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use HMENU of type "userfunction" instead of "userdefined"', 0, '', '3.6', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (106, 'typo3/sysext/cms/tslib/class.tslib_pibase.php', 'tslib_pibase', '', 'pi_setClassStyle', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, I think this function should not be used (and probably isn''t used anywhere). It was a part of a concept which was left behind quite quickly.', 0, '', '3.6', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (107, 'typo3/sysext/cms/tslib/class.tslib_pibase.php', 'tslib_pibase', '', 'pi_list_query', '@deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.5, use pi_exec_query() instead!', 0, '', '3.6', '4.5', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (108, 'typo3/sysext/cms/tslib/content/class.tslib_content_abstract.php', 'tslib_content_Abstract', '', 'stdWrap', '@deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7, use $this->cObj->stdWrap() instead.', 0, 'public', '4.5', '4.7', '$this->cObj', '', 'stdWrap()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (109, 'typo3/sysext/cms/tslib/content/class.tslib_content_phpscript.php', 'tslib_content_PhpScript', '', '__call', '@deprecated since 4.5, will be removed in 4.7. Use $this->cObj-><method>() instead', 0, 'public', '4.5', '4.7', '$this->cObj', '', '<method>()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (110, 'typo3/sysext/cms/tslib/content/class.tslib_content_phpscript.php', 'tslib_content_PhpScript', '', '__get', '@deprecated since 4.5, will be removed in 4.7. Use $this->cObj-><property> instead.', 0, 'public', '4.5', '4.7', '$this->cObj', '', '<property>', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (111, 'typo3/sysext/dbal/class.ux_t3lib_db.php', 'ux_t3lib_DB', '', 'quoteSelectFields', '@deprecated since TYPO3 4.0, will be removed in TYPO3 4.6', 0, 'public', '4.0', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (112, 'typo3/sysext/dbal/class.ux_t3lib_db.php', 'ux_t3lib_DB', '', 'sql', '@deprecated since TYPO3 4.1, will be removed in TYPO3 4.6', 0, 'public', '4.1', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (113, 'typo3/sysext/em/classes/extensions/class.tx_em_extensions_details.php', 'tx_em_Extensions_Details', '', 'helpCol', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (114, 'typo3/sysext/extbase/Classes/Dispatcher.php', 'Tx_Extbase_Dispatcher', '', 'injectConfigurationManager', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 0, 'public', '1.3.0', '1.5.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (115, 'typo3/sysext/extbase/Classes/Domain/Model/FrontendUser.php', 'Tx_Extbase_Domain_Model_FrontendUser', '', 'getUsergroups', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 - use Tx_Extbase_Domain_Model_FrontendUser::getUsergroup() instead', 0, 'public', '1.3.0', '1.5.0', 'Tx_Extbase_Domain_Model_FrontendUser', '', 'getUsergroup()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (116, 'typo3/sysext/extbase/Classes/MVC/Controller/AbstractController.php', 'Tx_Extbase_MVC_Controller_AbstractController', '', '__construct', '@deprecated', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (117, 'typo3/sysext/extbase/Classes/MVC/Controller/ControllerContext.php', 'Tx_Extbase_MVC_Controller_ControllerContext', '', 'getFlashMessages', '@deprecated', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (118, 'typo3/sysext/extbase/Classes/MVC/Controller/FlashMessages.php', 'Tx_Extbase_MVC_Controller_FlashMessages', '', 'getAll', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Use Use getAllMessages() instead', 0, 'public', '1.3.0', '1.5.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (119, 'typo3/sysext/extbase/Classes/MVC/Controller/FlashMessages.php', 'Tx_Extbase_MVC_Controller_FlashMessages', '', 'getAllAndFlush', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Use getAllMessagesAndFlush() instead', 0, 'public', '1.3.0', '1.5.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (120, 'typo3/sysext/extbase/Classes/MVC/Web/Request.php', 'Tx_Extbase_MVC_Web_Request', '', 'getContentObjectData', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Use the ConfigurationManager to retrieve the current ContentObject', 0, 'public', '1.3.0', '1.5.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (121, 'typo3/sysext/extbase/Classes/Object/Manager.php', 'Tx_Extbase_Object_Manager', '', 'getObject', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 0, 'public', '1.3.0', '1.5.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (122, 'typo3/sysext/extbase/Classes/Persistence/Query.php', 'Tx_Extbase_Persistence_Query', '', 'count', '@deprecated since Extbase 1.3.0; was removed in FLOW3; will be removed in Extbase 1.5.0; use Query::execute()::count() instead', 0, 'public', '1.3.0', '1.5.0', 'Query::execute()', '', 'count()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (123, 'typo3/sysext/extbase/Classes/Persistence/Query.php', 'Tx_Extbase_Persistence_Query', '', 'withUid', '@deprecated since Extbase 1.2.0; was removed in FLOW3; will be removed in Extbase 1.4.0; use equals() instead', 0, 'public', '1.2.0', '1.4.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (124, 'typo3/sysext/extbase/Classes/Persistence/QueryInterface.php', '', 'Tx_Extbase_Persistence_QueryInterface', 'count', '@deprecated since Extbase 1.3.0; was removed in FLOW3; will be removed in Extbase 1.5.0', 0, 'public', '1.3.0', '1.5.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (125, 'typo3/sysext/extbase/Classes/Persistence/QueryInterface.php', '', 'Tx_Extbase_Persistence_QueryInterface', 'withUid', '@deprecated since Extbase 1.2.0; was removed in FLOW3; will be removed in Extbase 1.4.0; use equals() instead', 0, 'public', '1.2.0', '1.4.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (126, 'typo3/sysext/extbase/Classes/Persistence/QueryResult.php', 'Tx_Extbase_Persistence_QueryResult', '', '__construct', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 0, 'public', '1.3.0', '1.5.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (127, 'typo3/sysext/extbase/Classes/Persistence/Storage/Typo3DbBackend.php', 'Tx_Extbase_Persistence_Storage_Typo3DbBackend', '', 'getPlainValue', '@deprecated since Extbase 1.3; will be removed in Extbase 1.5', 0, 'protected', '1.3', '1.5', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (128, 'typo3/sysext/fluid/Classes/Core/ViewHelper/TagBasedViewHelper.php', 'Tx_Fluid_Core_ViewHelper_TagBasedViewHelper', '', '__construct', '@deprecated. Extend Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper instead!', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (129, 'typo3/sysext/fluid/Classes/ViewHelpers/Form/TextboxViewHelper.php', 'Tx_Fluid_ViewHelpers_Form_TextboxViewHelper', '', 'initializeArguments', '@deprecated since 1.0.0 alpha 7', 0, 'public', '1.0.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (130, 'typo3/sysext/fluid/Classes/ViewHelpers/RenderFlashMessagesViewHelper.php', 'Tx_Fluid_ViewHelpers_RenderFlashMessagesViewHelper', '', 'initialize', '@deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0', 0, 'public', '1.3.0', '1.5.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (131, 'typo3/sysext/indexed_search/class.indexer.php', 'tx_indexedsearch_indexer', '', 'procesWordsInArrays', '@deprecated since TYPO3 4.0, this function will be removed in TYPO3 4.6.', 0, '', '4.0', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (132, 'typo3/sysext/indexed_search/class.indexer.php', 'tx_indexedsearch_indexer', '', 'makeCHash', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, use directly t3lib_div::calculateCHash()', 0, '', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (133, 'typo3/sysext/indexed_search/class.indexer.php', 'tx_indexedsearch_indexer', '', 'fe_headerNoCache', '@deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, the method was extracted to hooks/class.tx_indexedsearch_tslib_fe_hook.php', 0, '', '4.3', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (134, 'typo3/sysext/install/updates/class.tx_coreupdates_installnewsysexts.php', 'tx_coreupdates_installnewsysexts', '', 'addExtToList', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Should not be needed anymore. Extensions should be installed directly by calling Tx_Install_Updates_Base::installExtensions()', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (135, 'typo3/sysext/install/updates/class.tx_coreupdates_installnewsysexts.php', 'tx_coreupdates_installnewsysexts', '', 'writeNewExtensionList', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Use Tx_Install_Updates_Base::installExtensions() instead', 0, 'protected', '4.5', '4.7', 'Tx_Install_Updates_Base', '', 'installExtensions()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (136, 'typo3/sysext/install/updates/class.tx_coreupdates_installsysexts.php', 'tx_coreupdates_installsysexts', '', 'addExtToList', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Should not be needed anymore. Extensions should be installed directly by calling Tx_Install_Updates_Base::installExtensions()', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (137, 'typo3/sysext/install/updates/class.tx_coreupdates_installsysexts.php', 'tx_coreupdates_installsysexts', '', 'writeNewExtensionList', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Use Tx_Install_Updates_Base::installExtensions() instead', 0, 'protected', '4.5', '4.7', 'Tx_Install_Updates_Base', '', 'installExtensions()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (138, 'typo3/sysext/scheduler/class.tx_scheduler_croncmd.php', 'tx_scheduler_CronCmd', '', 'getNextValue', '@deprecated since 4.5', 0, 'public', '4.5', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (139, 'typo3/sysext/scheduler/class.tx_scheduler_croncmd.php', 'tx_scheduler_CronCmd', '', 'getTstamp', '@deprecated since 4.5', 0, 'public', '4.5', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (140, 'typo3/sysext/simulatestatic/class.tx_simulatestatic.php', 'tx_simulatestatic', '', 'makeSimulatedFileNameCompat', '@deprecated since TYPO3 4.3, will be deleted in TYPO3 4.6', 0, 'public', '4.3', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (141, 'typo3/sysext/tstemplate/ts/index.php', 'SC_mod_web_ts_index', '', 'getCountCacheTables', '@deprecated since TYPO3 4.2.0, will be removed in TYPO3 4.6', 0, '', '4.2.0', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (142, 'typo3/sysext/version/ws/class.wslib.php', 'wslib', '', 'CLI_main', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - This was meant for an obsolete CLI script. You shouldn''t be calling this.', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (143, 'typo3/template.php', 'template', '', 'fw', '@deprecated since TYPO3 3.6, will be removed in TYPO3 4.6', 0, '', '3.6', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (144, 'typo3/template.php', 'template', '', 'thisBlur', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (145, 'typo3/template.php', 'template', '', 'helpStyle', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (146, 'typo3/template.php', 'template', '', 'middle', '@deprecated since TYPO3 3.6, will be removed in TYPO3 4.6', 0, '', '3.6', '4.6', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (147, 'typo3/template.php', 'template', '', 'getDynTabMenuJScode', '@deprecated since TYPO3 4.5, as the getDynTabMenu() function includes the function automatically since TYPO3 4.3', 0, '', '4.5', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (148, 'typo3/view_help.php', 'local_t3lib_parsehtml', '', 'render_SingleFlex', '@deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7. Use render_Single() instead.', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (149, 'typo3/view_help.php', 'local_t3lib_parsehtml', '', 'printItemFlex', '@deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7. Use printItem() instead.', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (150, 't3lib/class.t3lib_befunc.php', 't3lib_BEfunc', '', 'compilePreviewKeyword', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8, functionality is now in Tx_Version_Preview', 1, 'public', '4.6', '4.8', 'Tx_Version_Preview', '', 'compilePreviewKeyword', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (151, 't3lib/class.t3lib_cache.php', 't3lib_cache', '', 'initPageCache', '@deprecated since TYPO3 4.6, will be removed in 4.8 - cacheManager->getCache() now initializes caches automatically', 1, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (152, 't3lib/class.t3lib_cache.php', 't3lib_cache', '', 'initPageSectionCache', '@deprecated since TYPO3 4.6, will be removed in 4.8 - cacheManager->getCache() now initializes caches automatically', 1, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (153, 't3lib/class.t3lib_cache.php', 't3lib_cache', '', 'initContentHashCache', '@deprecated since TYPO3 4.6, will be removed in 4.8 - cacheManager->getCache() now initializes caches automatically', 1, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (154, 't3lib/class.t3lib_cache.php', 't3lib_cache', '', 'enableCachingFramework', '@deprecated since 4.6, will be removed in 4.8: The caching framework is enabled by default', 1, 'public', '4.6', '4.8:', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (155, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'breakLinesForEmail', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Mail::breakLinesForEmail()', 1, 'public', '4.6', '4.8', 't3lib_utility_Mail', '', 'breakLinesForEmail', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (156, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'intInRange', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::forceIntegerInRange() instead', 1, 'public', '4.6', '4.8', 't3lib_utility_Math', '', 'forceIntegerInRange', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (157, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'intval_positive', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::convertToPositiveInteger() instead', 1, 'public', '4.6', '4.8', 't3lib_utility_Math', '', 'convertToPositiveInteger', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (158, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'int_from_ver', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.9 - Use t3lib_utility_VersionNumber::convertVersionNumberToInteger() instead', 1, 'public', '4.6', '4.9', 't3lib_utility_VersionNumber', '', 'convertVersionNumberToInteger', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (159, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'testInt', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::canBeInterpretedAsInteger() instead', 1, 'public', '4.6', '4.8', 't3lib_utility_Math', '', 'canBeInterpretedAsInteger', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (160, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'calcPriority', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::calculateWithPriorityToAdditionAndSubtraction() instead', 1, 'public', '4.6', '4.8', 't3lib_utility_Math', '', 'calculateWithPriorityToAdditionAndSubtraction', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (161, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'calcParenthesis', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::calculateWithParentheses() instead', 1, 'public', '4.6', '4.8', 't3lib_utility_Math', '', 'calculateWithParentheses', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (162, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'readLLPHPfile', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - use t3lib_l10n_parser_Llphp::getParsedData() from now on', 1, 'public', '4.6', '4.8', 't3lib_l10n_parser_Llphp', '', 'getParsedData', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (163, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'readLLXMLfile', '@deprecated since TYPO3 4.6, will be removed in TYPO3 6.0 - use t3lib_l10n_parser_Llxml::getParsedData() from now on', 1, 'public', '4.6', '6.0', 't3lib_l10n_parser_Llxml', '', 'getParsedData', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (164, 't3lib/l10n/class.t3lib_l10n_locales.php', 't3lib_l10n_Locales', '', 'initialize', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 1, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (165, 'typo3/sysext/extbase/Classes/Utility/Cache.php', 'Tx_Extbase_Utility_Cache', '', 'clearPageCache', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0. Please use Tx_Extbase_Service_CacheService instead', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (166, 'typo3/sysext/extbase/Classes/Utility/ClassLoader.php', 'Tx_Extbase_Utility_ClassLoader', '', 'loadClass', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0. TYPO3 core autoloader handles extbase files as well', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (167, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'createAutoloadRegistryForExtension', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (168, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'buildAutoloadRegistryForSinglePath', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0', 1, 'protected', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (169, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'extractClassNames', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0', 1, 'protected', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (170, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'findToken', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0', 1, 'protected', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (171, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'getPluginNamespace', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_ExtensionService instead', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (172, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'getPluginNameByAction', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_ExtensionService instead', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (173, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'isActionCacheable', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_ExtensionService instead', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (174, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'getTargetPidByPlugin', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_ExtensionService instead', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (175, 'typo3/sysext/extbase/Classes/Utility/TypeHandling.php', 'Tx_Extbase_Utility_TypeHandling', '', 'getTypeHandlingService', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0. Please use Tx_Extbase_Service_TypeHandlingService instead', 1, 'protected', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (176, 'typo3/sysext/extbase/Classes/Utility/TypeHandling.php', 'Tx_Extbase_Utility_TypeHandling', '', 'parseType', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_TypoScriptService instead', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (177, 'typo3/sysext/extbase/Classes/Utility/TypeHandling.php', 'Tx_Extbase_Utility_TypeHandling', '', 'normalizeType', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_TypoScriptService instead', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (178, 'typo3/sysext/extbase/Classes/Utility/TypoScript.php', 'Tx_Extbase_Utility_TypoScript', '', 'getTypoScriptService', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0. Please use Tx_Extbase_Service_TypoScriptService instead', 1, 'protected', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (179, 'typo3/sysext/extbase/Classes/Utility/TypoScript.php', 'Tx_Extbase_Utility_TypoScript', '', 'convertTypoScriptArrayToPlainArray', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_TypoScriptService instead', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (180, 'typo3/sysext/extbase/Classes/Utility/TypoScript.php', 'Tx_Extbase_Utility_TypoScript', '', 'convertPlainArrayToTypoScriptArray', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_TypoScriptService instead', 1, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (181, 't3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php', 't3lib_cache_backend_DbBackend', '', 'setCacheTable', '@deprecated since TYPO3 4.6: The backend calculates the table name internally, this method does nothing anymore', 0, 'public', '4.6:', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (182, 't3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php', 't3lib_cache_backend_DbBackend', '', 'setTagsTable', '@deprecated since TYPO3 4.6: The backend calculates the table name internally, this method does nothing anymore', 0, 'public', '4.6:', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (183, 't3lib/cache/frontend/class.t3lib_cache_frontend_abstractfrontend.php', 't3lib_cache_frontend_AbstractFrontend', '', 'flushByTags', '@deprecated since 4.6, will be removed in 4.8', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (184, 't3lib/cache/frontend/class.t3lib_cache_frontend_abstractfrontend.php', 't3lib_cache_frontend_AbstractFrontend', '', 'getClassTag', '@deprecated since TYPO3 4.6 - Use t3lib_cache_Manager::getClassTag() instead', 0, 'public', '4.6', '', 't3lib_cache_Manager', '', 'getClassTag()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (185, 't3lib/class.t3lib_cli.php', 't3lib_cli', '', 't3lib_cli', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (186, 't3lib/class.t3lib_foldertree.php', 't3lib_folderTree', '', 't3lib_folderTree', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (187, 't3lib/class.t3lib_htmlmail.php', 't3lib_htmlmail', '', '__construct', '@deprecated since TYPO3 4.5, this file will be removed in TYPO3 4.7. Please use t3lib_mail instead (SwiftMail based).', 0, 'public', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (188, 't3lib/class.t3lib_htmlmail.php', 't3lib_htmlmail', '', 't3lib_htmlmail', '@deprecated since TYPO3 4.5 and will be removed in TYPO3 4.7. Use __construct() instead.', 0, 'public', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (189, 't3lib/class.t3lib_install.php', 't3lib_install', '', 't3lib_install', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (190, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getFieldDefinitions_fileContent', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (191, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getFieldDefinitions_sqlContent_parseTypes', '@deprecated Since TYPO3 4.6, will be removed in 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (192, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getCollationForCharset', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (193, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getFieldDefinitions_database', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (194, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getDatabaseExtra', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (195, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getUpdateSuggestions', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (196, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'assembleFieldDefinition', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (197, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getStatementArray', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (198, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getCreateTables', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (199, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getTableInsertStatements', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (200, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'performUpdateQueries', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (201, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'getListOfTables', '@deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (202, 't3lib/class.t3lib_spritemanager.php', 't3lib_SpriteManager', '', 'compatibilityCalls', '@deprecated since TYPO3 4.4: Will be removed in 4.7', 0, 'private', '4.4:', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (203, 't3lib/class.t3lib_superadmin.php', 't3lib_superadmin', '', 't3lib_superadmin', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (204, 't3lib/class.t3lib_tceforms.php', 't3lib_TCEforms', '', 't3lib_TCEforms', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (205, 't3lib/class.t3lib_xml.php', 't3lib_xml', '', 't3lib_xml', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (206, 't3lib/config_default.php', '', '', 'ini_set', '@deprecated Deprecated since 4.6 - will be removed in 4.8. */', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (207, 't3lib/config_default.php', '', '', 'xdebug', '@deprecated Deprecated since 4.6 - will be removed in 4.8.', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (208, 't3lib/l10n/class.t3lib_l10n_locales.php', 't3lib_l10n_Locales', '', 'getLocales', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (209, 't3lib/l10n/class.t3lib_l10n_locales.php', 't3lib_l10n_Locales', '', 'getTerLocales', '@deprecated since TYPO3 4.6', 0, 'public', '4.6', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (210, 't3lib/l10n/class.t3lib_l10n_locales.php', 't3lib_l10n_Locales', '', 'getTerLocaleDependencies', '@deprecated since TYPO3 4.6', 0, 'public', '4.6', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (211, 't3lib/l10n/class.t3lib_l10n_locales.php', 't3lib_l10n_Locales', '', 'convertToTerLocales', '@deprecated since TYPO3 4.6', 0, 'protected', '4.6', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (212, 'typo3/class.browse_links.php', 'TBE_browser_recordList', '', 'TBE_browser_recordList', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (213, 'typo3/class.browse_links.php', 'TBE_browser_recordList', '', 'localPageTree', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (214, 'typo3/class.browse_links.php', 'TBE_browser_recordList', '', 'localFolderTree', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (215, 'typo3/class.filelistfoldertree.php', 'filelistFolderTree', '', 'filelistFolderTree', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (216, 'typo3/class.webpagetree.php', 'webPageTree', '', 'webPageTree', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (217, 'typo3/index.php', 'SC_index', '', 'mergeOldLoginLabels', '@deprecated since TYPO3 4.6, remove in TYPO3 4.8', 0, 'protected', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (218, 'typo3/sysext/beuser/mod/index.php', 'localPageTree', '', 'localPageTree', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (219, 'typo3/sysext/beuser/mod/index.php', 'localPageTree', '', 'localFolderTree', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (220, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'getTable_fe_users', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (221, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'getTable_sys_note', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (222, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'getTable_tt_board', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (223, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'getTable_tt_address', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (224, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'getTable_tt_links', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (225, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'getTable_tt_guest', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (226, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'getTable_tt_news', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (227, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'getTable_tt_calender', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (228, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'getTable_tt_products', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (229, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'tt_board_getTree', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (230, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'tt_board_drawItem', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (231, 'typo3/sysext/cms/layout/class.tx_cms_layout.php', 'tx_cms_layout', '', 'strip_tags', '@deprecated since TYPO3 4.6, will be removed in 4.8 - using php-function strip_tags now', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (232, 'typo3/sysext/cms/tslib/class.tslib_adminpanel.php', 'tslib_AdminPanel', '', 'getExtPublishList', '@deprecated since 4.6, will be removed in 4.8', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (233, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'ADMCMD_preview', '@deprecated since TYPO3 4.6, should be removed in TYPO3 4.8, this is now in Tx_Version', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (234, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'ADMCMD_preview_postInit', '@deprecated since TYPO3 4.6, should be removed in TYPO3 4.8, this is now in Tx_Version', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (235, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'pageCachePostProcess', '@deprecated since 4.6, will be removed in 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (236, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'printError', '@deprecated since TYPO3 4.5, will be removed in TYPO3 4.7', 0, '', '4.5', '4.7', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (237, 'typo3/sysext/cms/tslib/class.tslib_fetce.php', 'tslib_feTCE', '', '__construct', '@deprecated since TYPO3 3.6, will be removed in TYPO3 4.8', 0, 'public', '3.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (238, 'typo3/sysext/cms/tslib/class.tslib_pibase.php', 'tslib_pibase', '', 'tslib_pibase', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (239, 'typo3/sysext/cms/tslib/class.tslib_search.php', 'tslib_search', '', 'quotemeta', '@deprecated This function is deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Please, use preg_quote() instead.', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (240, 'typo3/sysext/cms/tslib/content/class.tslib_content_html.php', 'tslib_content_Html', '', 'render', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - use TEXT from now on', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (241, 'typo3/sysext/cms/tslib/content/class.tslib_content_phpscript.php', 'tslib_content_PhpScript', '', 'render', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (242, 'typo3/sysext/cms/tslib/content/class.tslib_content_phpscriptexternal.php', 'tslib_content_PhpScriptExternal', '', 'render', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (243, 'typo3/sysext/cms/tslib/content/class.tslib_content_phpscriptinternal.php', 'tslib_content_PhpScriptInternal', '', 'render', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (244, 'typo3/sysext/em/classes/connection/class.tx_em_connection_extdirectsoap.php', 'tx_em_Connection_ExtDirectSoap', '', 'testUserLogin', '@deprecated since 4.6, will be removed in 4.8', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (245, 'typo3/sysext/extbase/Classes/Configuration/FrontendConfigurationManager.php', 'Tx_Extbase_Configuration_FrontendConfigurationManager', '', 'convertFlexformContentToArray', '@deprecated since Extbase 1.4; will be removed in Extbase 6.0', 0, 'protected', '1.4', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (246, 'typo3/sysext/extbase/Classes/Configuration/FrontendConfigurationManager.php', 'Tx_Extbase_Configuration_FrontendConfigurationManager', '', 'walkFlexformNode', '@deprecated since Extbase 1.4; will be removed in Extbase 6.0', 0, 'protected', '1.4', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (247, 'typo3/sysext/extbase/Classes/MVC/CLI/RequestHandler.php', 'Tx_Extbase_MVC_CLI_RequestHandler', '', 'injectObjectManager', '@deprecated since Extbase 1.1; will be removed in Extbase 6.0', 0, 'public', '1.1', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (248, 'typo3/sysext/extbase/Classes/MVC/Controller/AbstractController.php', 'Tx_Extbase_MVC_Controller_AbstractController', '', 'injectDeprecatedPropertyMapper', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (249, 'typo3/sysext/extbase/Classes/MVC/Controller/ActionController.php', 'Tx_Extbase_MVC_Controller_ActionController', '', 'checkRequestHash', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'protected', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (250, 'typo3/sysext/extbase/Classes/MVC/Controller/Argument.php', 'Tx_Extbase_MVC_Controller_Argument', '', 'setNewValidatorConjunction', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (251, 'typo3/sysext/extbase/Classes/MVC/Controller/Argument.php', 'Tx_Extbase_MVC_Controller_Argument', '', 'getOrigin', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (252, 'typo3/sysext/extbase/Classes/MVC/Controller/Argument.php', 'Tx_Extbase_MVC_Controller_Argument', '', 'transformValue', '@deprecated since Extbase 1.4, will be removed in Extbase 6.0', 0, 'protected', '1.4', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (253, 'typo3/sysext/extbase/Classes/MVC/Controller/Argument.php', 'Tx_Extbase_MVC_Controller_Argument', '', 'isValue', '@deprecated since Extbase 1.4.0, will be removed with Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (254, 'typo3/sysext/extbase/Classes/MVC/Controller/ArgumentsValidator.php', 'Tx_Extbase_MVC_Controller_ArgumentsValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. Is only needed for old property mapper.', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (255, 'typo3/sysext/extbase/Classes/MVC/Controller/ControllerContext.php', 'Tx_Extbase_MVC_Controller_ControllerContext', '', 'setRequest', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (256, 'typo3/sysext/extbase/Classes/MVC/Controller/ControllerContext.php', 'Tx_Extbase_MVC_Controller_ControllerContext', '', 'setArgumentsMappingResults', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (257, 'typo3/sysext/extbase/Classes/MVC/Controller/ControllerContext.php', 'Tx_Extbase_MVC_Controller_ControllerContext', '', 'getArgumentsMappingResults', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (258, 'typo3/sysext/extbase/Classes/MVC/Request.php', 'Tx_Extbase_MVC_Request', '', 'setDispatched', '@deprecated since Extbase 1.4.0, will be removed with Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (259, 'typo3/sysext/extbase/Classes/MVC/Request.php', 'Tx_Extbase_MVC_Request', '', 'setErrors', '@deprecated since Extbase 1.4.0, will be removed with Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (260, 'typo3/sysext/extbase/Classes/MVC/Request.php', 'Tx_Extbase_MVC_Request', '', 'getErrors', '@deprecated since Extbase 1.4.0, will be removed with Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (261, 'typo3/sysext/extbase/Classes/MVC/Web/AbstractRequestHandler.php', 'Tx_Extbase_MVC_Web_AbstractRequestHandler', '', 'injectObjectManager', '@deprecated since Extbase 1.1; will be removed in Extbase 6.0', 0, 'public', '1.1', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (262, 'typo3/sysext/extbase/Classes/MVC/Web/Request.php', 'Tx_Extbase_MVC_Web_Request', '', 'injectHashService', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (263, 'typo3/sysext/extbase/Classes/MVC/Web/Request.php', 'Tx_Extbase_MVC_Web_Request', '', 'setHmacVerified', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (264, 'typo3/sysext/extbase/Classes/MVC/Web/Request.php', 'Tx_Extbase_MVC_Web_Request', '', 'isHmacVerified', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (265, 'typo3/sysext/extbase/Classes/Persistence/Manager.php', 'Tx_Extbase_Persistence_Manager', '', 'getSession', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (266, 'typo3/sysext/extbase/Classes/Persistence/Manager.php', 'Tx_Extbase_Persistence_Manager', '', 'getBackend', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (267, 'typo3/sysext/extbase/Classes/Persistence/ManagerInterface.php', '', 'Tx_Extbase_Persistence_ManagerInterface', 'getSession', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (268, 'typo3/sysext/extbase/Classes/Persistence/ManagerInterface.php', '', 'Tx_Extbase_Persistence_ManagerInterface', 'getBackend', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (269, 'typo3/sysext/extbase/Classes/Property/Mapper.php', 'Tx_Extbase_Property_Mapper', '', 'injectValidatorResolver', '@deprecated since Extbase 1.4.0', 0, 'public', '1.4.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (270, 'typo3/sysext/extbase/Classes/Property/MappingResults.php', 'Tx_Extbase_Property_MappingResults', '', 'addError', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (271, 'typo3/sysext/extbase/Classes/Utility/Extension.php', 'Tx_Extbase_Utility_Extension', '', 'generateAutoloadPhpFileData', '@deprecated since Extbase 1.4.0; will be removed in Extbase 6.0', 0, 'protected', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (272, 'typo3/sysext/extbase/Classes/Validation/PropertyError.php', 'Tx_Extbase_Validation_PropertyError', '', '__construct', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (273, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractCompositeValidator.php', 'Tx_Extbase_Validation_Validator_AbstractCompositeValidator', '', 'setOptions', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (274, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractCompositeValidator.php', 'Tx_Extbase_Validation_Validator_AbstractCompositeValidator', '', 'getErrors', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (275, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractValidator.php', 'Tx_Extbase_Validation_Validator_AbstractValidator', '', '__construct', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. You should use constructor parameter to set validation options.', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (276, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractValidator.php', 'Tx_Extbase_Validation_Validator_AbstractValidator', '', 'setOptions', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. use constructor instead.', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (277, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractValidator.php', 'Tx_Extbase_Validation_Validator_AbstractValidator', '', 'getErrors', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. use validate() instead.', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (278, 'typo3/sysext/extbase/Classes/Validation/Validator/ConjunctionValidator.php', 'Tx_Extbase_Validation_Validator_ConjunctionValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (279, 'typo3/sysext/extbase/Classes/Validation/Validator/DisjunctionValidator.php', 'Tx_Extbase_Validation_Validator_DisjunctionValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (280, 'typo3/sysext/extbase/Classes/Validation/Validator/GenericObjectValidator.php', 'Tx_Extbase_Validation_Validator_GenericObjectValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (281, 'typo3/sysext/extbase/Classes/Validation/Validator/GenericObjectValidator.php', 'Tx_Extbase_Validation_Validator_GenericObjectValidator', '', 'isPropertyValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (282, 'typo3/sysext/extbase/Classes/Validation/Validator/GenericObjectValidator.php', 'Tx_Extbase_Validation_Validator_GenericObjectValidator', '', 'addErrorsForProperty', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'protected', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (283, 'typo3/sysext/extbase/Classes/Validation/Validator/ObjectValidatorInterface.php', '', 'Tx_Extbase_Validation_Validator_ObjectValidatorInterface', 'canValidate', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (284, 'typo3/sysext/extbase/Classes/Validation/Validator/RawValidator.php', 'Tx_Extbase_Validation_Validator_RawValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (285, 'typo3/sysext/extbase/Classes/Validation/Validator/RawValidator.php', 'Tx_Extbase_Validation_Validator_RawValidator', '', 'setOptions', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (286, 'typo3/sysext/extbase/Classes/Validation/Validator/RawValidator.php', 'Tx_Extbase_Validation_Validator_RawValidator', '', 'getErrors', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (287, 'typo3/sysext/extbase/Classes/Validation/Validator/ValidatorInterface.php', '', 'Tx_Extbase_Validation_Validator_ValidatorInterface', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. use validate() instead.', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (288, 'typo3/sysext/extbase/Classes/Validation/Validator/ValidatorInterface.php', '', 'Tx_Extbase_Validation_Validator_ValidatorInterface', 'setOptions', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. Use constructor instead.', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (289, 'typo3/sysext/extbase/Classes/Validation/Validator/ValidatorInterface.php', '', 'Tx_Extbase_Validation_Validator_ValidatorInterface', 'getErrors', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. The errors are returned from validate() now.', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (290, 'typo3/sysext/extbase/Tests/Unit/MVC/Controller/AbstractControllerTest.php', 'Tx_Extbase_Tests_Unit_MVC_Controller_AbstractControllerTest', '', 'mapRequestArgumentsToControllerArgumentsPreparesInformationAndValidatorsAndMapsAndValidates', '@deprecated behavior.', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (291, 'typo3/sysext/extbase/Tests/Unit/MVC/Controller/ArgumentBehaviorBeforeExtbase14Test.php', 'Tx_Extbase_Tests_Unit_MVC_Controller_ArgumentBehaviorBeforeExtbase14Test', '', 'constructingArgumentWithoutNameThrowsException', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.0', 0, 'public', '1.4.0', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (292, 'typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php', 'Tx_Fluid_Core_ViewHelper_AbstractViewHelper', '', 'getRenderingContext', '@deprecated since Extbase 1.4.0, will be removed in Extbase 1.6.0. use $this->renderingContext instead', 0, 'public', '1.4.0', '1.6.0', '$this', '', 'renderingContext', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (293, 'typo3/sysext/fluid/Classes/ViewHelpers/EscapeViewHelper.php', 'Tx_Fluid_ViewHelpers_EscapeViewHelper', '', 'render', '@deprecated since Extbase 1.4.0; will be removed in Extbase 1.6.0. Please use the <f:format.*> ViewHelpers instead.', 0, 'public', '1.4.0', '1.6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (294, 'typo3/sysext/fluid/Classes/ViewHelpers/Form/AbstractFormFieldViewHelper.php', 'Tx_Fluid_ViewHelpers_Form_AbstractFormFieldViewHelper', '', 'getErrorsForProperty', '@deprecated since Extbase 1.4.0, will be removed in Extbase 1.6.0.', 0, 'protected', '1.4.0', '1.6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (295, 'typo3/sysext/fluid/Classes/ViewHelpers/Form/ErrorsViewHelper.php', 'Tx_Fluid_ViewHelpers_Form_ErrorsViewHelper', '', 'render', '@deprecated since Extbase 1.4.0, will be removed with Extbase 1.6.0.', 0, 'public', '1.4.0', '1.6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (296, 'typo3/sysext/fluid/Classes/ViewHelpers/Form/TextboxViewHelper.php', 'Tx_Fluid_ViewHelpers_Form_TextboxViewHelper', '', 'render', '@deprecated since Extbase 1.4.0; will be removed in Extbase 1.6.0. Please use the <f:form.textfield> ViewHelper instead.', 0, 'public', '1.4.0', '1.6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (297, 'typo3/sysext/impexp/app/index.php', 'localPageTree', '', 'localPageTree', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (298, 'typo3/sysext/indexed_search/class.lexer.php', 'tx_indexedsearch_lexer', '', 'tx_indexedsearch_lexer', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (299, 'typo3/sysext/install/mod/class.tx_install.php', 'tx_install', '', 'tx_install', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (300, 'typo3/sysext/lang/lang.php', 'language', '', 'hscAndCharConv', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use htmlspecialchars() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (301, 'typo3/sysext/lowlevel/class.tx_lowlevel_admin_core.php', 'tx_lowlevel_admin_core', '', 'tx_lowlevel_admin_core', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (302, 'typo3/sysext/lowlevel/class.tx_lowlevel_cleaner_core.php', 'tx_lowlevel_cleaner_core', '', 'tx_lowlevel_cleaner_core', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (303, 'typo3/sysext/lowlevel/clmods/class.cleanflexform.php', 'tx_lowlevel_cleanflexform', '', 'tx_lowlevel_cleanflexform', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (304, 'typo3/sysext/lowlevel/clmods/class.deleted.php', 'tx_lowlevel_deleted', '', 'tx_lowlevel_deleted', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (305, 'typo3/sysext/lowlevel/clmods/class.double_files.php', 'tx_lowlevel_double_files', '', 'tx_lowlevel_double_files', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (306, 'typo3/sysext/lowlevel/clmods/class.lost_files.php', 'tx_lowlevel_lost_files', '', 'tx_lowlevel_lost_files', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (307, 'typo3/sysext/lowlevel/clmods/class.missing_files.php', 'tx_lowlevel_missing_files', '', 'tx_lowlevel_missing_files', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (308, 'typo3/sysext/lowlevel/clmods/class.missing_relations.php', 'tx_lowlevel_missing_relations', '', 'tx_lowlevel_missing_relations', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (309, 'typo3/sysext/lowlevel/clmods/class.orphan_records.php', 'tx_lowlevel_orphan_records', '', 'tx_lowlevel_orphan_records', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (310, 'typo3/sysext/lowlevel/clmods/class.rte_images.php', 'tx_lowlevel_rte_images', '', 'tx_lowlevel_rte_images', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (311, 'typo3/sysext/lowlevel/clmods/class.syslog.php', 'tx_lowlevel_syslog', '', 'tx_lowlevel_syslog', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (312, 'typo3/sysext/lowlevel/clmods/class.versions.php', 'tx_lowlevel_versions', '', 'tx_lowlevel_versions', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (313, 'typo3/sysext/rtehtmlarea/class.tx_rtehtmlarea_base.php', 'tx_rtehtmlarea_base', '', 'buildStyleSheet', '@deprecated since TYPO3 4.8, will be removed in TYPO3 4.10', 0, '', '4.8', '4.10', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (314, 'typo3/sysext/setup/mod/index.php', 'SC_mod_user_setup_index', '', '__construct', '@deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (315, 'typo3/sysext/setup/mod/index.php', 'SC_mod_user_setup_index', '', 'setInstallToolFileExists', '@deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8 - use Tx_Install_Service_BasicService', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (316, 'typo3/sysext/setup/mod/index.php', 'SC_mod_user_setup_index', '', 'setInstallToolFileKeep', '@deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8 - use Tx_Install_Service_BasicService', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (317, 'typo3/sysext/setup/mod/index.php', 'SC_mod_user_setup_index', '', 'getInstallToolFileExists', '@deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8 - use Tx_Install_Service_BasicService', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (318, 'typo3/sysext/setup/mod/index.php', 'SC_mod_user_setup_index', '', 'getInstallToolFileKeep', '@deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8 - use Tx_Install_Service_BasicService', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (319, 'typo3/sysext/setup/mod/index.php', 'SC_mod_user_setup_index', '', 'renderInstallToolEnableFileButton', '@deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (320, 'typo3/sysext/workspaces/Classes/Service/Befunc.php', 'Tx_Workspaces_Service_Befunc', '', 'getLivePageUid', '@deprecated since TYPO3 4.6 - use Tx_Workspaces_Service_Workspaces::getLivePageUid() instead', 0, 'protected', '4.6', '', 'Tx_Workspaces_Service_Workspaces', '', 'getLivePageUid()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (321, 'typo3/template.php', 'template', '', 'template', '@deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead.', 0, 'public', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (322, 'typo3/template.php', 'template', '', 'clearCacheMenu', '@deprecated since TYPO3 4.6, will be removed in TYPO3 4.8', 0, '', '4.6', '4.8', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (323, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'cHashParams', '@deprecated since TYPO3 4.7 - will be removed in TYPO3 6.1 - use t3lib_cacheHash instead', 1, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (324, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'generateCHash', '@deprecated since TYPO3 4.7 - will be removed in TYPO3 6.1 - use t3lib_cacheHash instead', 1, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (325, 't3lib/class.t3lib_div.php', 't3lib_div', '', 'calculateCHash', '@deprecated since TYPO3 4.7 - will be removed in TYPO3 6.1 - use t3lib_cacheHash instead', 1, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (326, 't3lib/class.t3lib_tsfebeuserauth.php', 't3lib_tsfeBeUserAuth', '', 'initializeAdminPanel', '@deprecated since 4.7 will be removed in 6.1', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (327, 't3lib/class.t3lib_userauth.php', 't3lib_userAuth', '', 'start', '@deprecated since 4.7 will be removed in 6.1', 0, '', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (328, 't3lib/class.t3lib_userauth.php', 't3lib_userAuth', '', 'compareUident', '@deprecated the usage of $authInfo[''security_level''] is deprecated since 4.7 */', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (329, 't3lib/class.t3lib_userauthgroup.php', 't3lib_userAuthGroup', '', 'workspaceVersioningTypeAccess', '@deprecated since TYPO3 4.4, will be removed in TYPO3 6.0 as only element versioning is supported now', 0, '', '4.4', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (330, 't3lib/class.t3lib_userauthgroup.php', 't3lib_userAuthGroup', '', 'workspaceVersioningTypeGetClosest', '@deprecated since TYPO3 4.4, will be removed in TYPO3 6.0 as only element versioning is supported now', 0, '', '4.4', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (331, 't3lib/class.t3lib_userauthgroup.php', 't3lib_userAuthGroup', '', 'inList', '@deprecated since TYPO3 4.7, should be removed in TYPO3 6.1, use equivalent function t3lib_div::inList()', 0, '', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (332, 'typo3/sysext/about/Classes/Controller/AboutController.php', 'Tx_About_Controller_AboutController', '', 'getCustomContent', '@deprecated Since 4.7; will be removed together with the call in indexAction and the fluid partial in 6.1', 0, 'protected', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (333, 'typo3/sysext/about/interfaces/interface.tx_about_customsections.php', '', 'tx_about_customSections', 'addSection', '@deprecated since 4.7, will be removed in 6.1. Use fluid overrides to change the view', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (334, 'typo3/sysext/aboutmodules/class.tx_aboutmodules_functions.php', 'tx_aboutmodules_Functions', '', '__construct', '@deprecated since 4.7, will be removed in 6.1', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (335, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'cHashParams', '@deprecated since TYPO3 4.7 - will be removed in TYPO3 6.1 - use t3lib_cacheHash instead', 0, '', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (336, 'typo3/sysext/cms/tslib/class.tslib_fe.php', 'tslib_fe', '', 'workspacePreviewInit', '@deprecated since TYPO3 4.7, will be removed in TYPO3 6.1 as this is part of Tx_Version now', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (337, 'typo3/sysext/indexed_search/class.indexer.php', 'tx_indexedsearch_indexer', '', 'md5inthash', '@deprecated will be removed in 6.0.', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (338, 'typo3/sysext/indexed_search/modfunc1/class.tx_indexedsearch_modfunc1.php', 'tx_indexedsearch_modfunc1', '', 'utf8_to_currentCharset', '@deprecated since 4.7, will be removed in 6.1', 0, '', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (339, 'typo3/sysext/indexed_search/pi/class.tx_indexedsearch.php', 'tx_indexedsearch', '', 'md5inthash', '@deprecated will be removed in 6.0', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (340, 'typo3/sysext/sv/class.tx_sv_auth.php', 'tx_sv_auth', '', 'processOriginalPasswordValue', '@deprecated will be removed with 6.1', 0, 'protected', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (341, 'typo3/sysext/backend/Classes/Utility/BackendUtility.php', 'BackendUtility', '', 'compilePreviewKeyword', '@deprecated since TYPO3 4.6, will be removed in TYPO3 6.0, functionality is now in Tx_Version_Preview', 1, 'public', '4.6', '6.0', 'Tx_Version_Preview', '', 'compilePreviewKeyword', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (342, 'typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php', 'SystemEnvironmentBuilder', '', 'setupClassAliasForLegacyBaseClasses', '@deprecated since 6.0, will be removed in 6.2', 1, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (343, 'typo3/sysext/core/Classes/Localization/Locales.php', 'Locales', '', 'initialize', '@deprecated since TYPO3 4.6, will be removed in TYPO3 6.0', 1, 'public', '4.6', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (344, 'typo3/sysext/core/Classes/Utility/DebugUtility.php', 'DebugUtility', '', 'prepareVariableForJavascript', '@deprecated since 6.0 will be removed with 6.2', 1, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (345, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'typo3_loadExtensions', '@deprecated since 6.0, will be removed in two versions', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (346, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', '_makeIncludeHeader', '@deprecated since 6.0, will be removed in two versions', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (347, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'isCacheFilesAvailable', '@deprecated since 6.0, will be removed in two versions', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (348, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'cannotCacheFilesWritable', '@deprecated since 6.0, will be removed in two versions', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (349, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'currentCacheFiles', '@deprecated since 6.0, will be removed in versions', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (350, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'writeCacheFiles', '@deprecated since 6.0, will be removed in two versions', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (351, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'getExtensionCacheBehaviour', '@deprecated since 6.0, will be removed two versions later', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (352, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'getCacheFilePrefix', '@deprecated since 6.0, will be removed two versions later', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (353, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'getEnabledExtensionList', '@deprecated since 6.0, will be removed two versions later', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (354, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'getRequiredExtensionList', '@deprecated since 6.0, will be removed two versions later', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (355, 'typo3/sysext/core/Classes/Utility/ExtensionManagementUtility.php', 'ExtensionManagementUtility', '', 'getIgnoredExtensionList', '@deprecated since 6.0, will be removed two versions later', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (356, 'typo3/sysext/core/Classes/Utility/GeneralUtility.php', 'GeneralUtility', '', 'int_from_ver', '@deprecated since TYPO3 4.6, will be removed in TYPO3 6.1 - Use t3lib_utility_VersionNumber::convertVersionNumberToInteger() instead', 1, 'public', '4.6', '6.1', 't3lib_utility_VersionNumber', '', 'convertVersionNumberToInteger', 1, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (357, 'typo3/sysext/core/Classes/Utility/GeneralUtility.php', 'GeneralUtility', '', 'cHashParams', '@deprecated since TYPO3 4.7 - will be removed in TYPO3 6.1 - use t3lib_cacheHash instead', 1, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (358, 'typo3/sysext/core/Classes/Utility/GeneralUtility.php', 'GeneralUtility', '', 'generateCHash', '@deprecated since TYPO3 4.7 - will be removed in TYPO3 6.1 - use t3lib_cacheHash instead', 1, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (359, 'typo3/sysext/core/Classes/Utility/GeneralUtility.php', 'GeneralUtility', '', 'calculateCHash', '@deprecated since TYPO3 4.7 - will be removed in TYPO3 6.1 - use t3lib_cacheHash instead', 1, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (360, 'typo3/sysext/core/Classes/Utility/GeneralUtility.php', 'GeneralUtility', '', 'hasValidClassPrefix', '@deprecated since 6.0, will be removed two versions later', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (361, 'typo3/sysext/core/Classes/Utility/GeneralUtility.php', 'GeneralUtility', '', 'getValidClassPrefixes', '@deprecated since 6.0, will be removed two versions later', 1, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (362, 't3lib/class.t3lib_ajax.php', 't3lib_ajax', '', '__construct', '@deprecated since 6.0, the class will be removed from core with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (363, 't3lib/class.t3lib_ajax.php', 't3lib_ajax', '', 'getJScode', '@deprecated since 6.0, class will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (364, 't3lib/class.t3lib_ajax.php', 't3lib_ajax', '', 'outputXMLreply', '@deprecated since 6.0, class will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (365, 't3lib/class.t3lib_install.php', 't3lib_install', '', '__construct', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (366, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'setValueInLocalconfFile', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (367, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'setArrayValueInLocalconfFile', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (368, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'array_export', '@deprecated since 6.0, will be removed with 6.2', 0, 'protected', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (369, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'writeToLocalconf_control', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (370, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'writeToLocalconf', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (371, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'checkForBadString', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (372, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'slashValueForSingleDashes', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (373, 't3lib/class.t3lib_install.php', 't3lib_install', '', 'generateUpdateDatabaseForm_checkboxes', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (374, 't3lib/class.t3lib_readmail.php', 't3lib_readmail', '', '__construct', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (375, 't3lib/class.t3lib_syntaxhl.php', 't3lib_syntaxhl', '', '__construct', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (376, 't3lib/class.t3lib_userauthgroup.php', 't3lib_userAuthGroup', '', '__construct', '@deprecated since 6.0, will be removed in 6.2. The functionality was merged wih t3lib_beUserAuth', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (377, 't3lib/class.t3lib_userauthgroup.php', 't3lib_userAuthGroup', '', 'getFileoperationPermissions', '@deprecated since TYPO3 6.0, use the TSconfig settings instead', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (378, 't3lib/class.t3lib_userauthgroup.php', 't3lib_userAuthGroup', '', 'addFileMount', '@deprecated since TYPO3 6.0, will be removed in TYPO3 6.1, all data is stored in $this->fileStorages now, see initializeFileStorages()', 0, 'public', '6.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (379, 't3lib/class.t3lib_userauthgroup.php', 't3lib_userAuthGroup', '', 'returnFilemounts', '@deprecated since TYPO3 6.0, will be removed in TYPO3 6.1 as getFileStorages() should be the one to be used', 0, 'public', '6.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (380, 't3lib/class.t3lib_xml.php', 't3lib_xml', '', '__construct', '@deprecated since TYPO3 6.0. It will be removed with TYPO3 6.2, please use other xml helper solutions instead.', 0, 'public', '6.0.', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (381, 't3lib/stddb/DefaultConfiguration.php', '', '', 'ini_set', '@deprecated Deprecated since 4.6 - will be removed in 6.0.', 0, '', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (382, 'typo3/class.browse_links.php', 'localPageTree', '', '__construct', '@deprecated since 6.0, the classname TBE_browser_recordList and this file is obsolete', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (383, 'typo3/sysext/about/Classes/Controller/AboutController.php', 'AboutController', '', 'getCustomContent', '@deprecated Since 4.7; will be removed together with the call in indexAction and the fluid partial in 6.1', 0, 'protected', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (384, 'typo3/sysext/about/Classes/CustomSectionsInterface.php', '', 'CustomSectionsInterface', 'addSection', '@deprecated since 4.7, will be removed in 6.1. Use fluid overrides to change the view', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (385, 'typo3/sysext/aboutmodules/Classes/Utility/FunctionsUtility.php', 'FunctionsUtility', '', '__construct', '@deprecated since 4.7, will be removed in 6.1', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (386, 'typo3/sysext/backend/Classes/ClickMenu/ClickMenu.php', 'ClickMenu', '', 'doDisplayTopFrameCM', '@deprecated since TYPO3 6.0, will be removed in 6.2 as there is no click menu in the topframe anymore (no topframe at all actually)', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (387, 'typo3/sysext/backend/Classes/Controller/LoginController.php', 'LoginController', '', 'makeCopyrightNotice', '@deprecated since TYPO3 6.0, will be removed in TYPO3 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (388, 'typo3/sysext/backend/Classes/FrontendBackendUserAuthentication.php', 'FrontendBackendUserAuthentication', '', 'initializeAdminPanel', '@deprecated since 4.7 will be removed in 6.1', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (389, 'typo3/sysext/backend/Classes/Template/DocumentTemplate.php', 'DocumentTemplate', '', 'isCMlayers', '@deprecated since TYPO3 4.7, will be removed in TYPO3 6.1 - This function makes no sense anymore', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (390, 'typo3/sysext/backend/Classes/Template/DocumentTemplate.php', 'DocumentTemplate', '', 'initCharset', '@deprecated since TYPO3 6.0, remove in 6.2. The charset is utf-8 all the time for the backend now', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (391, 'typo3/sysext/backend/Classes/Tree/View/FolderTreeView.php', 'FolderTreeView', '', 'getCount', '@deprecated since TYPO3 6.0, as the folder objects do the counting automatically', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (392, 'typo3/sysext/backend/Classes/View/PageLayoutView.php', 'PageLayoutView', '', 'getPageInfoBox', '@deprecated and unused since 6.0, will be removed two versions later', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (393, 'typo3/sysext/backend/Classes/View/PageLayoutView.php', 'PageLayoutView', '', 'strip_tags', '@deprecated since TYPO3 4.6, deprecationLog since 6.0, will be removed two versions later - use php-function strip_tags instead', 0, 'public', '4.6', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (394, 'typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php', 'AbstractUserAuthentication', '', 'start', '@deprecated since 4.7 will be removed in 6.1', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (395, 'typo3/sysext/core/Classes/Authentication/AbstractUserAuthentication.php', 'AbstractUserAuthentication', '', 'compareUident', '@deprecated the usage of $authInfo[''security_level''] is deprecated since 4.7 */', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (396, 'typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php', 'BackendUserAuthentication', '', 'workspaceVersioningTypeAccess', '@deprecated since TYPO3 4.4, will be removed in TYPO3 6.0 as only element versioning is supported now', 0, 'public', '4.4', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (397, 'typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php', 'BackendUserAuthentication', '', 'workspaceVersioningTypeGetClosest', '@deprecated since TYPO3 4.4, will be removed in TYPO3 6.0 as only element versioning is supported now', 0, 'public', '4.4', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (398, 'typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php', 'BackendUserAuthentication', '', 'inList', '@deprecated since TYPO3 4.7, should be removed in TYPO3 6.1, use equivalent function TYPO3CMSCoreUtilityGeneralUtility::inList()', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (399, 'typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php', 'BackendUserAuthentication', '', 'getFileoperationPermissions', '@deprecated since TYPO3 6.0, use the TSconfig settings instead', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (400, 'typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php', 'BackendUserAuthentication', '', 'addFileMount', '@deprecated since TYPO3 6.0, will be removed in TYPO3 6.1, all data is stored in $this->fileStorages now, see initializeFileStorages()', 0, 'public', '6.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (401, 'typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php', 'BackendUserAuthentication', '', 'returnFilemounts', '@deprecated since TYPO3 6.0, will be removed in TYPO3 6.1 as getFileStorages() should be the one to be used', 0, 'public', '6.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (402, 'typo3/sysext/core/Classes/Core/Bootstrap.php', 'Bootstrap', '', 'deprecationLogForOldExtCacheSetting', '@deprecated since 6.0, the check will be removed two version later.', 0, 'protected', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (403, 'typo3/sysext/core/Classes/DataHandling/DataHandler.php', 'DataHandler', '', 'removeCacheFiles', '@deprecated since 6.0, will be removed in two versions, use TYPO3CMSCoreUtilityExtensionManagementUtility::removeCacheFiles() instead', 0, 'public', '6.0', '', 'TYPO3CMSCoreUtilityExtensionManagementUtility', '', 'removeCacheFiles()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (404, 'typo3/sysext/core/Classes/Html/HtmlParser.php', 'HtmlParser', '', 'stripTagsExcept', '@deprecated For a long time, deprecationLog added since 6.0, well be removed two versions later', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (405, 'typo3/sysext/core/Classes/Integrity/DatabaseIntegrityCheck.php', 'DatabaseIntegrityCheck', '', 'genTreeStatus', '@deprecated and unused since 6.0, will be removed two versions later', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (406, 'typo3/sysext/core/Classes/Localization/Locales.php', 'Locales', '', 'getLocales', '@deprecated since TYPO3 4.6, will be removed in TYPO3 6.0 */', 0, 'public', '4.6', '6.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (407, 'typo3/sysext/core/Classes/Localization/Locales.php', 'Locales', '', 'getTerLocales', '@deprecated since TYPO3 4.6', 0, 'public', '4.6', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (408, 'typo3/sysext/core/Classes/Localization/Locales.php', 'Locales', '', 'getTerLocaleDependencies', '@deprecated since TYPO3 4.6', 0, 'public', '4.6', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (409, 'typo3/sysext/core/Classes/Localization/Locales.php', 'Locales', '', 'convertToTerLocales', '@deprecated since TYPO3 4.6', 0, 'protected', '4.6', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (410, 'typo3/sysext/core/Classes/Utility/File/BasicFileUtility.php', 'BasicFileUtility', '', 'init', '@deprecated All methods in this class should not be used anymore since TYPO3 6.0. Please use corresponding TYPO3\CMS\Core\Resource\ResourceStorage (fetched via BE_USERS->getFileStorages()), as all functions should be found there (in a cleaner manner).', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (411, 'typo3/sysext/core/Classes/Utility/File/BasicFileUtility.php', 'BasicFileUtility', '', 'cleanDirectoryName', '@deprecated since 6.1, will be removed in two versions, use TYPO3CMSCoreUtilityPathUtility::getCanonicalPath() instead', 0, 'public', '6.1', '', 'TYPO3CMSCoreUtilityPathUtility', '', 'getCanonicalPath()', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (412, 'typo3/sysext/core/Classes/Utility/File/ExtendedFileUtility.php', 'ExtendedFileUtility', '', 'start', '@deprecated since TYPO3 6.0', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (413, 'typo3/sysext/core/Classes/Utility/File/ExtendedFileUtility.php', 'ExtendedFileUtility', '', 'findRecycler', '@deprecated since TYPO3 6.0, use TYPO3CMSCoreResourceResourceStorage method instead', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (414, 'typo3/sysext/core/Tests/Unit/Resource/Driver/LocalDriverTest.php', 'LocalDriverTest', '', 'newFilesCanBeCreated', '@depends existenceChecksWorkForFilesAndFolders', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (415, 'typo3/sysext/core/Tests/Unit/Resource/Driver/LocalDriverTest.php', 'LocalDriverTest', '', 'createdFilesAreEmpty', '@depends newFilesCanBeCreated', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (416, 'typo3/sysext/extbase/Classes/Mvc/Controller/AbstractController.php', 'AbstractController', '', '__construct', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (417, 'typo3/sysext/extbase/Classes/Mvc/Controller/AbstractController.php', 'AbstractController', '', 'injectDeprecatedPropertyMapper', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (418, 'typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php', 'ActionController', '', 'injectReflectionService', '@deprecated since Extbase 6.2, will be removed two versions later', 0, 'public', '6.2', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (419, 'typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php', 'ActionController', '', 'checkRequestHash', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'protected', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (420, 'typo3/sysext/extbase/Classes/Mvc/Controller/Argument.php', 'Argument', '', 'setNewValidatorConjunction', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (421, 'typo3/sysext/extbase/Classes/Mvc/Controller/Argument.php', 'Argument', '', 'getOrigin', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (422, 'typo3/sysext/extbase/Classes/Mvc/Controller/Argument.php', 'Argument', '', 'transformValue', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'protected', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (423, 'typo3/sysext/extbase/Classes/Mvc/Controller/Argument.php', 'Argument', '', 'isValue', '@deprecated since Extbase 1.4.0, will be removed with Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (424, 'typo3/sysext/extbase/Classes/Mvc/Controller/ArgumentsValidator.php', 'ArgumentsValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1 Is only needed for old property mapper.', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (425, 'typo3/sysext/extbase/Classes/Mvc/Controller/ControllerContext.php', 'ControllerContext', '', 'setRequest', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (426, 'typo3/sysext/extbase/Classes/Mvc/Controller/ControllerContext.php', 'ControllerContext', '', 'setArgumentsMappingResults', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (427, 'typo3/sysext/extbase/Classes/Mvc/Controller/ControllerContext.php', 'ControllerContext', '', 'getArgumentsMappingResults', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (428, 'typo3/sysext/extbase/Classes/Mvc/Request.php', 'Request', '', 'setDispatched', '@deprecated since Extbase 1.4.0, will be removed with Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (429, 'typo3/sysext/extbase/Classes/Mvc/Request.php', 'Request', '', 'setErrors', '@deprecated since Extbase 1.4.0, will be removed with Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (430, 'typo3/sysext/extbase/Classes/Mvc/Request.php', 'Request', '', 'getErrors', '@deprecated since Extbase 1.4.0, will be removed with Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (431, 'typo3/sysext/extbase/Classes/Mvc/Web/Request.php', 'Request', '', 'injectHashService', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (432, 'typo3/sysext/extbase/Classes/Mvc/Web/Request.php', 'Request', '', 'setHmacVerified', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (433, 'typo3/sysext/extbase/Classes/Mvc/Web/Request.php', 'Request', '', 'isHmacVerified', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (434, 'typo3/sysext/extbase/Classes/Persistence/Generic/QueryResult.php', 'QueryResult', '', '__construct', '@deprecated since Extbase 1.3.0; will be removed in Extbase 6.1', 0, 'public', '1.3.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (435, 'typo3/sysext/extbase/Classes/Persistence/Generic/Storage/Typo3DbBackend.php', 'Typo3DbBackend', '', 'addEnableFieldsStatement', '@deprecated since Extbase 6.0, will be removed in Extbase 6.2.', 0, 'protected', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (436, 'typo3/sysext/extbase/Classes/Persistence/Generic/Typo3QuerySettings.php', 'Typo3QuerySettings', '', 'setRespectEnableFields', '@deprecated since Extbase 6.0, will be removed in Extbase 6.2. Use setIgnoreEnableFields() and setEnableFieldsToBeIgnored() instead.', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (437, 'typo3/sysext/extbase/Classes/Persistence/Generic/Typo3QuerySettings.php', 'Typo3QuerySettings', '', 'getRespectEnableFields', '@deprecated since Extbase 6.0, will be removed in Extbase 6.2. Use getIgnoreEnableFields() and getEnableFieldsToBeIgnored() instead.', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (438, 'typo3/sysext/extbase/Classes/Persistence/PersistenceManagerInterface.php', '', 'PersistenceManagerInterface', 'getObjectCountByQuery', '@deprecated since Extbase 6.0, will be removed in Extbase 7.0', 0, 'public', '6.0', '7.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (439, 'typo3/sysext/extbase/Classes/Persistence/PersistenceManagerInterface.php', '', 'PersistenceManagerInterface', 'getObjectDataByQuery', '@deprecated since Extbase 6.0, will be removed in Extbase 7.0', 0, 'public', '6.0', '7.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (440, 'typo3/sysext/extbase/Classes/Persistence/PersistenceManagerInterface.php', '', 'PersistenceManagerInterface', 'registerRepositoryClassName', '@deprecated since Extbase 6.0, will be removed in Extbase 7.0', 0, 'public', '6.0', '7.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (441, 'typo3/sysext/extbase/Classes/Persistence/QueryInterface.php', '', 'QueryInterface', 'getSource', '@deprecated since Extbase 6.0, will be removed in Extbase 7.0', 0, 'public', '6.0', '7.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (442, 'typo3/sysext/extbase/Classes/Persistence/QueryInterface.php', '', 'QueryInterface', 'getType', '@deprecated since Extbase 6.0, will be removed in Extbase 7.0', 0, 'public', '6.0', '7.0', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (443, 'typo3/sysext/extbase/Classes/Persistence/Repository.php', 'Repository', '', '__construct', '@deprecated since Extbase 6.0.0; will be removed in Extbase 6.2 - Use objectManager to instantiate repository objects instead of GeneralUtility::makeInstance', 0, 'public', '6.0.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (444, 'typo3/sysext/extbase/Classes/Property/Mapper.php', 'Mapper', '', 'injectValidatorResolver', '@deprecated since Extbase 1.4.0', 0, 'public', '1.4.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (445, 'typo3/sysext/extbase/Classes/Property/MappingResults.php', 'MappingResults', '', 'addError', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (446, 'typo3/sysext/extbase/Classes/Security/Cryptography/HashService.php', 'HashService', '', 'generateHash', '@deprecated since Extbase 6.0, will be removed in Extbase 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (447, 'typo3/sysext/extbase/Classes/Security/Cryptography/HashService.php', 'HashService', '', 'validateHash', '@deprecated since Extbase 6.0, will be removed in Extbase 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (448, 'typo3/sysext/extbase/Classes/Validation/PropertyError.php', 'PropertyError', '', '__construct', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (449, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractCompositeValidator.php', 'AbstractCompositeValidator', '', 'setOptions', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (450, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractCompositeValidator.php', 'AbstractCompositeValidator', '', 'getErrors', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (451, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractValidator.php', 'AbstractValidator', '', '__construct', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1. You should use constructor parameter to set validation options.', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (452, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractValidator.php', 'AbstractValidator', '', 'setOptions', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1. use constructor instead.', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (453, 'typo3/sysext/extbase/Classes/Validation/Validator/AbstractValidator.php', 'AbstractValidator', '', 'getErrors', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1. use validate() instead.', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (454, 'typo3/sysext/extbase/Classes/Validation/Validator/ConjunctionValidator.php', 'ConjunctionValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (455, 'typo3/sysext/extbase/Classes/Validation/Validator/DisjunctionValidator.php', 'DisjunctionValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (456, 'typo3/sysext/extbase/Classes/Validation/Validator/GenericObjectValidator.php', 'GenericObjectValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (457, 'typo3/sysext/extbase/Classes/Validation/Validator/GenericObjectValidator.php', 'GenericObjectValidator', '', 'isPropertyValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (458, 'typo3/sysext/extbase/Classes/Validation/Validator/GenericObjectValidator.php', 'GenericObjectValidator', '', 'addErrorsForProperty', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'protected', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (459, 'typo3/sysext/extbase/Classes/Validation/Validator/ObjectValidatorInterface.php', '', 'ObjectValidatorInterface', 'canValidate', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (460, 'typo3/sysext/extbase/Classes/Validation/Validator/RawValidator.php', 'RawValidator', '', 'isValid', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (461, 'typo3/sysext/extbase/Classes/Validation/Validator/RawValidator.php', 'RawValidator', '', 'setOptions', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (462, 'typo3/sysext/extbase/Classes/Validation/Validator/RawValidator.php', 'RawValidator', '', 'getErrors', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (463, 'typo3/sysext/extbase/Tests/Unit/Mvc/Controller/ArgumentBehaviorBeforeExtbase14Test.php', 'ArgumentBehaviorBeforeExtbase14Test', '', 'constructingArgumentWithoutNameThrowsException', '@deprecated since Extbase 1.4.0, will be removed in Extbase 6.1', 0, 'public', '1.4.0', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (464, 'typo3/sysext/fluid/Classes/ViewHelpers/Be/AbstractBackendViewHelper.php', 'AbstractBackendViewHelper', '', 'createDocInstance', '@deprecated since 6.0 and will be removed in 6.2 Instead ->getDocInstance() should be used.', 0, 'protected', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (465, 'typo3/sysext/fluid/Classes/ViewHelpers/Form/AbstractFormFieldViewHelper.php', 'AbstractFormFieldViewHelper', '', 'getErrorsForProperty', '@deprecated since Fluid 1.4.0, will be removed in Fluid 6.1.', 0, 'protected', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (466, 'typo3/sysext/fluid/Classes/ViewHelpers/Form/ErrorsViewHelper.php', 'ErrorsViewHelper', '', 'render', '@deprecated since Fluid 1.4.0, will be removed with Fluid 6.1.', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (467, 'typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php', 'ContentObjectRenderer', '', 'HTML', '@deprecated since 6.0, will be removed in two versions', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (468, 'typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php', 'ContentObjectRenderer', '', 'PHP_SCRIPT', '@deprecated and unused since 6.0, will be removed two versions later', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (469, 'typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php', 'TypoScriptFrontendController', '', 'cHashParams', '@deprecated since TYPO3 4.7 - will be removed in TYPO3 6.1 - use t3lib_cacheHash instead', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (470, 'typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php', 'TypoScriptFrontendController', '', 'fe_tce', '@deprecated since 6.0, will be removed two versions later', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (471, 'typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php', 'TypoScriptFrontendController', '', 'isEXTincScript', '@deprecated since 6.0, will be removed two versions later', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (472, 'typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php', 'TypoScriptFrontendController', '', 'getLogIPAddress', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (473, 'typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php', 'TypoScriptFrontendController', '', 'getLogHostName', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (474, 'typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php', 'TypoScriptFrontendController', '', 'getLogUserName', '@deprecated since 6.0, will be removed with 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (475, 'typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php', 'TypoScriptFrontendController', '', 'workspacePreviewInit', '@deprecated since TYPO3 4.7, will be removed in TYPO3 6.1 as this is part of Tx_Version now', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (476, 'typo3/sysext/indexed_search/Classes/Controller/IndexedPagesController.php', 'IndexedPagesController', '', 'utf8_to_currentCharset', '@deprecated since 4.7, will be removed in 6.1', 0, 'public', '4.7', '6.1', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (477, 'typo3/sysext/install/Classes/Installer.php', 'Installer', '', 'writeToLocalconf_control', '@deprecated with 6.0, will be removed two versions later', 0, 'public', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (478, 'typo3/sysext/recordlist/Classes/RecordList/AbstractDatabaseRecordList.php', 'AbstractDatabaseRecordList', '', 'showSysNotesForPage', '@deprecated since 6.0, will be removed two versions later', 0, 'public', '6.0', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (479, 'typo3/sysext/rtehtmlarea/Classes/RteHtmlAreaBase.php', 'RteHtmlAreaBase', '', 'buildStyleSheet', '@deprecated since TYPO3 6.0, will be removed in TYPO3 6.2', 0, 'public', '6.0', '6.2', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (480, 'typo3/sysext/sv/Classes/AuthenticationService.php', 'AuthenticationService', '', 'processOriginalPasswordValue', '@deprecated will be removed with 6.1', 0, 'protected', '', '', '', '', '', 0, null);
INSERT INTO tx_smoothmigration_domain_model_deprecation (uid, file, class, interface, method, message, is_static, visibility, deprecated_since_version, removed_in_version, replacement_class, replacement_interface, replacement_method, no_brainer, replacement_message) VALUES (481, 'typo3/sysext/workspaces/Classes/Hook/BackendUtilityHook.php', 'BackendUtilityHook', '', 'getLivePageUid', '@deprecated since TYPO3 4.6 - use Tx_Workspaces_Service_Workspaces::getLivePageUid() instead', 0, 'protected', '4.6', '', 'Tx_Workspaces_Service_Workspaces', '', 'getLivePageUid()', 0, null);