-
Notifications
You must be signed in to change notification settings - Fork 706
Expand file tree
/
Copy pathLegacyClassesForIde.php
More file actions
6552 lines (5242 loc) · 205 KB
/
LegacyClassesForIde.php
File metadata and controls
6552 lines (5242 loc) · 205 KB
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
die('Access denied');
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class Tx_About_Controller_AboutController extends \TYPO3\CMS\About\Controller\AboutController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class Tx_About_Domain_Model_Extension extends \TYPO3\CMS\About\Domain\Model\Extension {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class Tx_About_Domain_Repository_ExtensionRepository extends \TYPO3\CMS\About\Domain\Repository\ExtensionRepository {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class Tx_About_ViewHelpers_SkinImageViewHelper extends \TYPO3\CMS\About\ViewHelpers\SkinImageViewHelper {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class Tx_Aboutmodules_Controller_ModulesController extends \TYPO3\CMS\Aboutmodules\Controller\ModulesController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class AjaxLogin extends \TYPO3\CMS\Backend\AjaxLoginHandler {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class clickMenu extends \TYPO3\CMS\Backend\ClickMenu\ClickMenu {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_clipboard extends \TYPO3\CMS\Backend\Clipboard\Clipboard {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_transl8tools extends \TYPO3\CMS\Backend\Configuration\TranslationConfigurationProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TSparser_TSconfig extends \TYPO3\CMS\Backend\Configuration\TsConfigParser {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_matchCondition_backend extends \TYPO3\CMS\Backend\Configuration\TypoScript\ConditionMatching\ConditionMatcher {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_contextmenu_AbstractContextMenu extends \TYPO3\CMS\Backend\ContextMenu\AbstractContextMenu {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_contextmenu_AbstractDataProvider extends \TYPO3\CMS\Backend\ContextMenu\AbstractContextMenuDataProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_contextmenu_Action extends \TYPO3\CMS\Backend\ContextMenu\ContextMenuAction {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_formmail extends \TYPO3\CMS\Frontend\Controller\DataSubmissionController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_contextmenu_ActionCollection extends \TYPO3\CMS\Backend\ContextMenu\ContextMenuActionCollection {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_contextmenu_extdirect_ContextMenu extends \TYPO3\CMS\Backend\ContextMenu\Extdirect\AbstractExtdirectContextMenu {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_contextmenu_pagetree_DataProvider extends \TYPO3\CMS\Backend\ContextMenu\Pagetree\ContextMenuDataProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_contextmenu_pagetree_extdirect_ContextMenu extends \TYPO3\CMS\Backend\ContextMenu\Pagetree\Extdirect\ContextMenuConfiguration {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_contextmenu_renderer_Abstract extends \TYPO3\CMS\Backend\ContextMenu\Renderer\AbstractContextMenuRenderer {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class TYPO3backend extends \TYPO3\CMS\Backend\Controller\BackendController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_wizard_backend_layout extends \TYPO3\CMS\Backend\Controller\BackendLayoutWizardController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_alt_clickmenu extends \TYPO3\CMS\Backend\Controller\ClickMenuController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_show_rechis extends \TYPO3\CMS\Backend\Controller\ContentElement\ElementHistoryController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_show_item extends \TYPO3\CMS\Backend\Controller\ContentElement\ElementInformationController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_move_el extends \TYPO3\CMS\Backend\Controller\ContentElement\MoveElementController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_db_new_content_el extends \TYPO3\CMS\Backend\Controller\ContentElement\NewContentElementController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_dummy extends \TYPO3\CMS\Backend\Controller\DummyController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_alt_doc extends \TYPO3\CMS\Backend\Controller\EditDocumentController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_file_newfolder extends \TYPO3\CMS\Backend\Controller\File\CreateFolderController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_file_edit extends \TYPO3\CMS\Backend\Controller\File\EditFileController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class TYPO3_tcefile extends \TYPO3\CMS\Backend\Controller\File\FileController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_file_upload extends \TYPO3\CMS\Backend\Controller\File\FileUploadController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_file_rename extends \TYPO3\CMS\Backend\Controller\File\RenameFileController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_alt_file_navframe extends \TYPO3\CMS\Backend\Controller\FileSystemNavigationFrameController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_listframe_loader extends \TYPO3\CMS\Backend\Controller\ListFrameLoaderController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_index extends \TYPO3\CMS\Backend\Controller\LoginController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_login_frameset extends \TYPO3\CMS\Backend\Controller\LoginFramesetController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_logout extends \TYPO3\CMS\Backend\Controller\LogoutController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_db_new extends \TYPO3\CMS\Backend\Controller\NewRecordController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_alt_doc_nodoc extends \TYPO3\CMS\Backend\Controller\NoDocumentsOpenController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_db_layout extends \TYPO3\CMS\Backend\Controller\PageLayoutController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_alt_db_navframe extends \TYPO3\CMS\Backend\Controller\PageTreeNavigationController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_tce_db extends \TYPO3\CMS\Backend\Controller\SimpleDataHandlerController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_wizard_add extends \TYPO3\CMS\Backend\Controller\Wizard\AddController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_wizard_colorpicker extends \TYPO3\CMS\Backend\Controller\Wizard\ColorpickerController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_wizard_edit extends \TYPO3\CMS\Backend\Controller\Wizard\EditController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_wizard_forms extends \TYPO3\CMS\Backend\Controller\Wizard\FormsController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_wizard_list extends \TYPO3\CMS\Backend\Controller\Wizard\ListController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_wizard_rte extends \TYPO3\CMS\Backend\Controller\Wizard\RteController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_wizard_table extends \TYPO3\CMS\Backend\Controller\Wizard\TableController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_transferData extends \TYPO3\CMS\Backend\Form\DataPreprocessor {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TCEforms_inline extends \TYPO3\CMS\Backend\Form\Element\InlineElement {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_tceformsInlineHook extends \TYPO3\CMS\Backend\Form\Element\InlineElementHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TCEforms_FE extends \TYPO3\CMS\Backend\Form\FrontendFormEngine {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_TCEforms_dbFileIconsHook extends \TYPO3\CMS\Backend\Form\DatabaseFileIconsHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TCEforms_Suggest_DefaultReceiver extends \TYPO3\CMS\Backend\Form\Element\SuggestDefaultReceiver {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TCEforms_Suggest extends \TYPO3\CMS\Backend\Form\Element\SuggestElement {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TCEforms_Tree extends \TYPO3\CMS\Backend\Form\Element\TreeElement {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TCEforms_ValueSlider extends \TYPO3\CMS\Backend\Form\Element\ValueSlider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TCEforms_Flexforms extends \TYPO3\CMS\Backend\Form\FlexFormsHelper {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TCEforms extends \TYPO3\CMS\Backend\Form\FormEngine {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tsfeBeUserAuth extends \TYPO3\CMS\Backend\FrontendBackendUserAuthentication {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class recordHistory extends \TYPO3\CMS\Backend\History\RecordHistory {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class extDirect_DataProvider_State extends \TYPO3\CMS\Backend\InterfaceState\ExtDirect\DataProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_extobjbase extends \TYPO3\CMS\Backend\Module\AbstractFunctionModule {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_SCbase extends \TYPO3\CMS\Backend\Module\BaseScriptClass {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_loadModules extends \TYPO3\CMS\Backend\Module\ModuleLoader {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class Typo3_ModuleStorage extends \TYPO3\CMS\Backend\Module\ModuleStorage {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_modSettings extends \TYPO3\CMS\Backend\ModuleSettings {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_recordList extends \TYPO3\CMS\Backend\RecordList\AbstractRecordList {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class TBE_browser_recordList extends \TYPO3\CMS\Backend\RecordList\ElementBrowserRecordList {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_localRecordListGetTableHook extends \TYPO3\CMS\Backend\RecordList\RecordListGetTableHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_rteapi extends \TYPO3\CMS\Backend\Rte\AbstractRte {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class extDirect_dataProvider_BackendLiveSearch extends \TYPO3\CMS\Backend\Search\LiveSearch\ExtDirect\LiveSearchDataProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_search_liveSearch extends \TYPO3\CMS\Backend\Search\LiveSearch\LiveSearch {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_search_liveSearch_queryParser extends \TYPO3\CMS\Backend\Search\LiveSearch\QueryParser {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_spritemanager_AbstractHandler extends \TYPO3\CMS\Backend\Sprite\AbstractSpriteHandler {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_spritemanager_SimpleHandler extends \TYPO3\CMS\Backend\Sprite\SimpleSpriteHandler {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_spritemanager_SpriteBuildingHandler extends \TYPO3\CMS\Backend\Sprite\SpriteBuildingHandler {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_spritemanager_SpriteGenerator extends \TYPO3\CMS\Backend\Sprite\SpriteGenerator {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_spritemanager_SpriteIconGenerator extends \TYPO3\CMS\Backend\Sprite\SpriteIconGeneratorInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_SpriteManager extends \TYPO3\CMS\Backend\Sprite\SpriteManager {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class bigDoc extends \TYPO3\CMS\Backend\Template\BigDocumentTemplate {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class template extends \TYPO3\CMS\Backend\Template\DocumentTemplate {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class frontendDoc extends \TYPO3\CMS\Backend\Template\FrontendDocumentTemplate {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class mediumDoc extends \TYPO3\CMS\Backend\Template\MediumDocumentTemplate {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class smallDoc extends \TYPO3\CMS\Backend\Template\SmallDocumentTemplate {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class noDoc extends \TYPO3\CMS\Backend\Template\StandardDocumentTemplate {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface backend_cacheActionsHook extends \TYPO3\CMS\Backend\Toolbar\ClearCacheActionsHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class ClearCacheMenu extends \TYPO3\CMS\Backend\Toolbar\ClearCacheToolbarItem {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class LiveSearch extends \TYPO3\CMS\Backend\Toolbar\LiveSearchToolbarItem {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class ShortcutMenu extends \TYPO3\CMS\Backend\Toolbar\ShortcutToolbarItem {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface backend_toolbarItem extends \TYPO3\CMS\Backend\Toolbar\ToolbarItemHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_tree_ExtDirect_AbstractExtJsTree extends \TYPO3\CMS\Backend\Tree\AbstractExtJsTree {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_tree_AbstractTree extends \TYPO3\CMS\Backend\Tree\AbstractTree {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_tree_AbstractDataProvider extends \TYPO3\CMS\Backend\Tree\AbstractTreeDataProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_tree_AbstractStateProvider extends \TYPO3\CMS\Backend\Tree\AbstractTreeStateProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_tree_ComparableNode extends \TYPO3\CMS\Backend\Tree\ComparableNodeInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_tree_DraggableAndDropable extends \TYPO3\CMS\Backend\Tree\DraggableAndDropableNodeInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_tree_LabelEditable extends \TYPO3\CMS\Backend\Tree\EditableNodeLabelInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_extdirect_Node extends \TYPO3\CMS\Backend\Tree\ExtDirectNode {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_tree_pagetree_interfaces_CollectionProcessor extends \TYPO3\CMS\Backend\Tree\Pagetree\CollectionProcessorInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_pagetree_Commands extends \TYPO3\CMS\Backend\Tree\Pagetree\Commands {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_pagetree_DataProvider extends \TYPO3\CMS\Backend\Tree\Pagetree\DataProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_pagetree_extdirect_Commands extends \TYPO3\CMS\Backend\Tree\Pagetree\ExtdirectTreeCommands {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_pagetree_extdirect_Tree extends \TYPO3\CMS\Backend\Tree\Pagetree\ExtdirectTreeDataProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_pagetree_Indicator extends \TYPO3\CMS\Backend\Tree\Pagetree\Indicator {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_tree_pagetree_interfaces_IndicatorProvider extends \TYPO3\CMS\Backend\Tree\Pagetree\IndicatorProviderInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_pagetree_Node extends \TYPO3\CMS\Backend\Tree\Pagetree\PagetreeNode {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_pagetree_NodeCollection extends \TYPO3\CMS\Backend\Tree\Pagetree\PagetreeNodeCollection {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_tree_Renderer_Abstract extends \TYPO3\CMS\Backend\Tree\Renderer\AbstractTreeRenderer {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_Renderer_ExtJsJson extends \TYPO3\CMS\Backend\Tree\Renderer\ExtJsJsonTreeRenderer {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_Renderer_UnorderedList extends \TYPO3\CMS\Backend\Tree\Renderer\UnorderedListTreeRenderer {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_SortedNodeCollection extends \TYPO3\CMS\Backend\Tree\SortedTreeNodeCollection {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_Node extends \TYPO3\CMS\Backend\Tree\TreeNode {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_NodeCollection extends \TYPO3\CMS\Backend\Tree\TreeNodeCollection {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_tree_RepresentationNode extends \TYPO3\CMS\Backend\Tree\TreeRepresentationNode {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_treeView extends \TYPO3\CMS\Backend\Tree\View\AbstractTreeView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_browseTree extends \TYPO3\CMS\Backend\Tree\View\BrowseTreeView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_folderTree extends \TYPO3\CMS\Backend\Tree\View\FolderTreeView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_positionMap extends \TYPO3\CMS\Backend\Tree\View\PagePositionMap {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_pageTree extends \TYPO3\CMS\Backend\Tree\View\PageTreeView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class extDirect_DataProvider_BackendUserSettings extends \TYPO3\CMS\Backend\User\ExtDirect\BackendUserSettingsDataProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_BEfunc extends \TYPO3\CMS\Backend\Utility\BackendUtility {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_iconWorks extends \TYPO3\CMS\Backend\Utility\IconUtility {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class tx_cms_BackendLayout extends \TYPO3\CMS\Backend\View\BackendLayoutView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class ModuleMenu extends \TYPO3\CMS\Backend\View\ModuleMenuView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class tx_cms_layout extends \TYPO3\CMS\Backend\View\PageLayoutView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface tx_cms_layout_tt_content_drawItemHook extends \TYPO3\CMS\Backend\View\PageLayoutViewDrawItemHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class webPageTree extends \TYPO3\CMS\Backend\View\PageTreeView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class SC_t3lib_thumbs extends \TYPO3\CMS\Backend\View\ThumbnailView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class TYPO3Logo extends \TYPO3\CMS\Backend\View\LogoView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface cms_newContentElementWizardsHook extends \TYPO3\CMS\Backend\Wizard\NewContentElementWizardHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_extjs_ExtDirectRouter extends \TYPO3\CMS\Core\ExtDirect\ExtDirectRouter {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_extjs_ExtDirectApi extends \TYPO3\CMS\Core\ExtDirect\ExtDirectApi {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_extjs_ExtDirectDebug extends \TYPO3\CMS\Core\ExtDirect\ExtDirectDebug {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cli extends \TYPO3\CMS\Core\Controller\CommandLineController {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class extDirect_DataProvider_ContextHelp extends \TYPO3\CMS\ContextHelp\ExtDirect\ContextHelpDataProvider {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_userAuth extends \TYPO3\CMS\Core\Authentication\AbstractUserAuthentication {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_beUserAuth extends \TYPO3\CMS\Core\Authentication\BackendUserAuthentication {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_autoloader extends \TYPO3\CMS\Core\Core\ClassLoader {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_cache_backend_AbstractBackend extends \TYPO3\CMS\Core\Cache\Backend\AbstractBackend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_backend_ApcBackend extends \TYPO3\CMS\Core\Cache\Backend\ApcBackend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_cache_backend_Backend extends \TYPO3\CMS\Core\Cache\Backend\BackendInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_backend_FileBackend extends \TYPO3\CMS\Core\Cache\Backend\FileBackend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_backend_MemcachedBackend extends \TYPO3\CMS\Core\Cache\Backend\MemcachedBackend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_backend_NullBackend extends \TYPO3\CMS\Core\Cache\Backend\NullBackend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_backend_PdoBackend extends \TYPO3\CMS\Core\Cache\Backend\PdoBackend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_cache_backend_PhpCapableBackend extends \TYPO3\CMS\Core\Cache\Backend\PhpCapableBackendInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_backend_RedisBackend extends \TYPO3\CMS\Core\Cache\Backend\RedisBackend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_backend_TransientMemoryBackend extends \TYPO3\CMS\Core\Cache\Backend\TransientMemoryBackend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_backend_DbBackend extends \TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache extends \TYPO3\CMS\Core\Cache\Cache {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_Factory extends \TYPO3\CMS\Core\Cache\CacheFactory {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_Manager extends \TYPO3\CMS\Core\Cache\CacheManager {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_Exception extends \TYPO3\CMS\Core\Cache\Exception {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_exception_ClassAlreadyLoaded extends \TYPO3\CMS\Core\Cache\Exception\ClassAlreadyLoadedException {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_exception_DuplicateIdentifier extends \TYPO3\CMS\Core\Cache\Exception\DuplicateIdentifierException {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_exception_InvalidBackend extends \TYPO3\CMS\Core\Cache\Exception\InvalidBackendException {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_exception_InvalidCache extends \TYPO3\CMS\Core\Cache\Exception\InvalidCacheException {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_exception_InvalidData extends \TYPO3\CMS\Core\Cache\Exception\InvalidDataException {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_exception_NoSuchCache extends \TYPO3\CMS\Core\Cache\Exception\NoSuchCacheException {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_cache_frontend_AbstractFrontend extends \TYPO3\CMS\Core\Cache\Frontend\AbstractFrontend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_cache_frontend_Frontend extends \TYPO3\CMS\Core\Cache\Frontend\FrontendInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_frontend_PhpFrontend extends \TYPO3\CMS\Core\Cache\Frontend\PhpFrontend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_frontend_StringFrontend extends \TYPO3\CMS\Core\Cache\Frontend\StringFrontend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cache_frontend_VariableFrontend extends \TYPO3\CMS\Core\Cache\Frontend\VariableFrontend {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_cs extends \TYPO3\CMS\Core\Charset\CharsetConverter {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_collection_AbstractRecordCollection extends \TYPO3\CMS\Core\Collection\AbstractRecordCollection {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_collection_Collection extends \TYPO3\CMS\Core\Collection\CollectionInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_collection_Editable extends \TYPO3\CMS\Core\Collection\EditableCollectionInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_collection_Nameable extends \TYPO3\CMS\Core\Collection\NameableCollectionInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_collection_Persistable extends \TYPO3\CMS\Core\Collection\PersistableCollectionInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_collection_RecordCollection extends \TYPO3\CMS\Core\Collection\RecordCollectionInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_collection_RecordCollectionRepository extends \TYPO3\CMS\Core\Collection\RecordCollectionRepository {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_collection_Sortable extends \TYPO3\CMS\Core\Collection\SortableCollectionInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_collection_StaticRecordCollection extends \TYPO3\CMS\Core\Collection\StaticRecordCollection {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_flexformtools extends \TYPO3\CMS\Core\Configuration\FlexForm\FlexFormTools {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_matchCondition_abstract extends \TYPO3\CMS\Core\Configuration\TypoScript\ConditionMatching\AbstractConditionMatcher {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_DB extends \TYPO3\CMS\Core\Database\DatabaseConnection {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_PdoHelper extends \TYPO3\CMS\Core\Database\PdoHelper {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_DB_postProcessQueryHook extends \TYPO3\CMS\Core\Database\PostProcessQueryHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_db_PreparedStatement extends \TYPO3\CMS\Core\Database\PreparedStatement {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_DB_preProcessQueryHook extends \TYPO3\CMS\Core\Database\PreProcessQueryHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_queryGenerator extends \TYPO3\CMS\Core\Database\QueryGenerator {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_fullsearch extends \TYPO3\CMS\Core\Database\QueryView {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_refindex extends \TYPO3\CMS\Core\Database\ReferenceIndex {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_loadDBGroup extends \TYPO3\CMS\Core\Database\RelationHandler {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_softrefproc extends \TYPO3\CMS\Core\Database\SoftReferenceIndex {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_sqlparser extends \TYPO3\CMS\Core\Database\SqlParser {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_extTables_PostProcessingHook extends \TYPO3\CMS\Core\Database\TableConfigurationPostProcessingHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_TCEmain extends \TYPO3\CMS\Core\DataHandling\DataHandler {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_TCEmain_checkModifyAccessListHook extends \TYPO3\CMS\Core\DataHandling\DataHandlerCheckModifyAccessListHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_TCEmain_processUploadHook extends \TYPO3\CMS\Core\DataHandling\DataHandlerProcessUploadHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
interface t3lib_browseLinksHook extends \TYPO3\CMS\Core\ElementBrowser\ElementBrowserHookInterface {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_codec_JavaScriptEncoder extends \TYPO3\CMS\Core\Encoder\JavaScriptEncoder {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
abstract class t3lib_error_AbstractExceptionHandler extends \TYPO3\CMS\Core\Error\AbstractExceptionHandler {}
/**
* @deprecated since 6.0 will be removed in 7.0
*/
class t3lib_error_DebugExceptionHandler extends \TYPO3\CMS\Core\Error\DebugExceptionHandler {}
/**
* @deprecated since 6.0 will be removed in 7.0