Translated using Weblate (Macedonian)
[phpmyadmin.git] / libraries / services_controllers.php
blob19d91d33dbf3c34b9757e496b5c8e6c555303ebc
1 <?php
3 declare(strict_types=1);
5 use PhpMyAdmin\Controllers\BrowseForeignersController;
6 use PhpMyAdmin\Controllers\ChangeLogController;
7 use PhpMyAdmin\Controllers\CheckRelationsController;
8 use PhpMyAdmin\Controllers\CollationConnectionController;
9 use PhpMyAdmin\Controllers\ColumnController;
10 use PhpMyAdmin\Controllers\Config;
11 use PhpMyAdmin\Controllers\Database;
12 use PhpMyAdmin\Controllers\DatabaseController;
13 use PhpMyAdmin\Controllers\ErrorReportController;
14 use PhpMyAdmin\Controllers\Export;
15 use PhpMyAdmin\Controllers\GisDataEditorController;
16 use PhpMyAdmin\Controllers\GitInfoController;
17 use PhpMyAdmin\Controllers\HomeController;
18 use PhpMyAdmin\Controllers\Import;
19 use PhpMyAdmin\Controllers\JavaScriptMessagesController;
20 use PhpMyAdmin\Controllers\LicenseController;
21 use PhpMyAdmin\Controllers\LintController;
22 use PhpMyAdmin\Controllers\LogoutController;
23 use PhpMyAdmin\Controllers\NavigationController;
24 use PhpMyAdmin\Controllers\NormalizationController;
25 use PhpMyAdmin\Controllers\PhpInfoController;
26 use PhpMyAdmin\Controllers\Preferences;
27 use PhpMyAdmin\Controllers\RecentTablesListController;
28 use PhpMyAdmin\Controllers\SchemaExportController;
29 use PhpMyAdmin\Controllers\Server;
30 use PhpMyAdmin\Controllers\Sql;
31 use PhpMyAdmin\Controllers\Table;
32 use PhpMyAdmin\Controllers\TableController;
33 use PhpMyAdmin\Controllers\ThemesController;
34 use PhpMyAdmin\Controllers\ThemeSetController;
35 use PhpMyAdmin\Controllers\Transformation;
36 use PhpMyAdmin\Controllers\UserPasswordController;
37 use PhpMyAdmin\Controllers\VersionCheckController;
38 use PhpMyAdmin\Controllers\View;
40 return [
41 'services' => [
42 BrowseForeignersController::class => [
43 'class' => BrowseForeignersController::class,
44 'arguments' => [
45 '$response' => '@response',
46 '$template' => '@template',
47 '$browseForeigners' => '@browse_foreigners',
48 '$relation' => '@relation',
51 ChangeLogController::class => [
52 'class' => ChangeLogController::class,
53 'arguments' => [
54 '$response' => '@response',
55 '$template' => '@template',
58 CheckRelationsController::class => [
59 'class' => CheckRelationsController::class,
60 'arguments' => [
61 '$response' => '@response',
62 '$template' => '@template',
63 '$relation' => '@relation',
66 CollationConnectionController::class => [
67 'class' => CollationConnectionController::class,
68 'arguments' => [
69 '$response' => '@response',
70 '$template' => '@template',
71 '$config' => '@config',
74 ColumnController::class => [
75 'class' => ColumnController::class,
76 'arguments' => [
77 '$response' => '@response',
78 '$template' => '@template',
79 '$dbi' => '@dbi',
82 Config\GetConfigController::class => [
83 'class' => Config\GetConfigController::class,
84 'arguments' => [
85 '$response' => '@response',
86 '$template' => '@template',
87 '$config' => '@config',
90 Config\SetConfigController::class => [
91 'class' => Config\SetConfigController::class,
92 'arguments' => [
93 '$response' => '@response',
94 '$template' => '@template',
95 '$config' => '@config',
98 Database\CentralColumns\PopulateColumnsController::class => [
99 'class' => Database\CentralColumns\PopulateColumnsController::class,
100 'arguments' => [
101 '$response' => '@response',
102 '$template' => '@template',
103 '$db' => '%db%',
104 '$centralColumns' => '@central_columns',
107 Database\CentralColumnsController::class => [
108 'class' => Database\CentralColumnsController::class,
109 'arguments' => [
110 '$response' => '@response',
111 '$template' => '@template',
112 '$db' => '%db%',
113 '$centralColumns' => '@central_columns',
116 Database\DataDictionaryController::class => [
117 'class' => Database\DataDictionaryController::class,
118 'arguments' => [
119 '$response' => '@response',
120 '$template' => '@template',
121 '$db' => '%db%',
122 '$relation' => '@relation',
123 '$transformations' => '@transformations',
124 '$dbi' => '@dbi',
127 Database\DesignerController::class => [
128 'class' => Database\DesignerController::class,
129 'arguments' => [
130 '$response' => '@response',
131 '$template' => '@template',
132 '$db' => '%db%',
133 '$databaseDesigner' => '@designer',
134 '$designerCommon' => '@designer_common',
137 Database\EventsController::class => [
138 'class' => Database\EventsController::class,
139 'arguments' => [
140 '$response' => '@response',
141 '$template' => '@template',
142 '$db' => '%db%',
143 '$events' => '@events',
144 '$dbi' => '@dbi',
147 Database\ExportController::class => [
148 'class' => Database\ExportController::class,
149 'arguments' => [
150 '$response' => '@response',
151 '$template' => '@template',
152 '$db' => '%db%',
153 '$export' => '@export',
154 '$exportOptions' => '@export_options',
157 Database\ImportController::class => [
158 'class' => Database\ImportController::class,
159 'arguments' => [
160 '$response' => '@response',
161 '$template' => '@template',
162 '$db' => '%db%',
163 '$dbi' => '@dbi',
166 Database\MultiTableQuery\QueryController::class => [
167 'class' => Database\MultiTableQuery\QueryController::class,
168 'arguments' => [
169 '$response' => '@response',
170 '$template' => '@template',
173 Database\MultiTableQuery\TablesController::class => [
174 'class' => Database\MultiTableQuery\TablesController::class,
175 'arguments' => [
176 '$response' => '@response',
177 '$template' => '@template',
178 '$dbi' => '@dbi',
181 Database\MultiTableQueryController::class => [
182 'class' => Database\MultiTableQueryController::class,
183 'arguments' => [
184 '$response' => '@response',
185 '$template' => '@template',
186 '$db' => '%db%',
187 '$dbi' => '@dbi',
190 Database\Operations\CollationController::class => [
191 'class' => Database\Operations\CollationController::class,
192 'arguments' => [
193 '$response' => '@response',
194 '$template' => '@template',
195 '$db' => '%db%',
196 '$operations' => '@operations',
197 '$dbi' => '@dbi',
200 Database\OperationsController::class => [
201 'class' => Database\OperationsController::class,
202 'arguments' => [
203 '$response' => '@response',
204 '$template' => '@template',
205 '$db' => '%db%',
206 '$operations' => '@operations',
207 '$checkUserPrivileges' => '@check_user_privileges',
208 '$relation' => '@relation',
209 '$relationCleanup' => '@relation_cleanup',
210 '$dbi' => '@dbi',
213 Database\PrivilegesController::class => [
214 'class' => Database\PrivilegesController::class,
215 'arguments' => [
216 '$response' => '@response',
217 '$template' => '@template',
218 '$db' => '%db%',
219 '$privileges' => '@server_privileges',
220 '$dbi' => '@dbi',
223 Database\QueryByExampleController::class => [
224 'class' => Database\QueryByExampleController::class,
225 'arguments' => [
226 '$response' => '@response',
227 '$template' => '@template',
228 '$db' => '%db%',
229 '$relation' => '@relation',
230 '$dbi' => '@dbi',
233 Database\RoutinesController::class => [
234 'class' => Database\RoutinesController::class,
235 'arguments' => [
236 '$response' => '@response',
237 '$template' => '@template',
238 '$db' => '%db%',
239 '$checkUserPrivileges' => '@check_user_privileges',
240 '$dbi' => '@dbi',
243 Database\SearchController::class => [
244 'class' => Database\SearchController::class,
245 'arguments' => [
246 '$response' => '@response',
247 '$template' => '@template',
248 '$db' => '%db%',
249 '$dbi' => '@dbi',
252 Database\SqlAutoCompleteController::class => [
253 'class' => Database\SqlAutoCompleteController::class,
254 'arguments' => [
255 '$response' => '@response',
256 '$template' => '@template',
257 '$db' => '%db%',
258 '$dbi' => '@dbi',
261 Database\SqlController::class => [
262 'class' => Database\SqlController::class,
263 'arguments' => [
264 '$response' => '@response',
265 '$template' => '@template',
266 '$db' => '%db%',
267 '$sqlQueryForm' => '@sql_query_form',
270 Database\SqlFormatController::class => [
271 'class' => Database\SqlFormatController::class,
272 'arguments' => [
273 '$response' => '@response',
274 '$template' => '@template',
275 '$db' => '%db%',
278 Database\Structure\AddPrefixController::class => [
279 'class' => Database\Structure\AddPrefixController::class,
280 'arguments' => [
281 '$response' => '@response',
282 '$template' => '@template',
283 '$db' => '%db%',
286 Database\Structure\AddPrefixTableController::class => [
287 'class' => Database\Structure\AddPrefixTableController::class,
288 'arguments' => [
289 '$response' => '@response',
290 '$template' => '@template',
291 '$db' => '%db%',
292 '$dbi' => '@dbi',
293 '$structureController' => '@' . Database\StructureController::class,
296 Database\Structure\CentralColumns\AddController::class => [
297 'class' => Database\Structure\CentralColumns\AddController::class,
298 'arguments' => [
299 '$response' => '@response',
300 '$template' => '@template',
301 '$db' => '%db%',
302 '$dbi' => '@dbi',
303 '$structureController' => '@' . Database\StructureController::class,
306 Database\Structure\CentralColumns\MakeConsistentController::class => [
307 'class' => Database\Structure\CentralColumns\MakeConsistentController::class,
308 'arguments' => [
309 '$response' => '@response',
310 '$template' => '@template',
311 '$db' => '%db%',
312 '$dbi' => '@dbi',
313 '$structureController' => '@' . Database\StructureController::class,
316 Database\Structure\CentralColumns\RemoveController::class => [
317 'class' => Database\Structure\CentralColumns\RemoveController::class,
318 'arguments' => [
319 '$response' => '@response',
320 '$template' => '@template',
321 '$db' => '%db%',
322 '$dbi' => '@dbi',
323 '$structureController' => '@' . Database\StructureController::class,
326 Database\Structure\ChangePrefixFormController::class => [
327 'class' => Database\Structure\ChangePrefixFormController::class,
328 'arguments' => [
329 '$response' => '@response',
330 '$template' => '@template',
331 '$db' => '%db%',
334 Database\Structure\CopyFormController::class => [
335 'class' => Database\Structure\CopyFormController::class,
336 'arguments' => [
337 '$response' => '@response',
338 '$template' => '@template',
339 '$db' => '%db%',
342 Database\Structure\CopyTableController::class => [
343 'class' => Database\Structure\CopyTableController::class,
344 'arguments' => [
345 '$response' => '@response',
346 '$template' => '@template',
347 '$db' => '%db%',
348 '$operations' => '@operations',
349 '$structureController' => '@' . Database\StructureController::class,
352 Database\Structure\CopyTableWithPrefixController::class => [
353 'class' => Database\Structure\CopyTableWithPrefixController::class,
354 'arguments' => [
355 '$response' => '@response',
356 '$template' => '@template',
357 '$db' => '%db%',
358 '$structureController' => '@' . Database\StructureController::class,
361 Database\Structure\DropFormController::class => [
362 'class' => Database\Structure\DropFormController::class,
363 'arguments' => [
364 '$response' => '@response',
365 '$template' => '@template',
366 '$db' => '%db%',
367 '$dbi' => '@dbi',
370 Database\Structure\DropTableController::class => [
371 'class' => Database\Structure\DropTableController::class,
372 'arguments' => [
373 '$response' => '@response',
374 '$template' => '@template',
375 '$db' => '%db%',
376 '$dbi' => '@dbi',
377 '$relationCleanup' => '@relation_cleanup',
378 '$structureController' => '@' . Database\StructureController::class,
381 Database\Structure\EmptyFormController::class => [
382 'class' => Database\Structure\EmptyFormController::class,
383 'arguments' => [
384 '$response' => '@response',
385 '$template' => '@template',
386 '$db' => '%db%',
389 Database\Structure\EmptyTableController::class => [
390 'class' => Database\Structure\EmptyTableController::class,
391 'arguments' => [
392 '$response' => '@response',
393 '$template' => '@template',
394 '$db' => '%db%',
395 '$dbi' => '@dbi',
396 '$relation' => '@relation',
397 '$relationCleanup' => '@relation_cleanup',
398 '$operations' => '@operations',
399 '$flash' => '@flash',
400 '$structureController' => '@' . Database\StructureController::class,
403 Database\Structure\FavoriteTableController::class => [
404 'class' => Database\Structure\FavoriteTableController::class,
405 'arguments' => [
406 '$response' => '@response',
407 '$template' => '@template',
408 '$db' => '%db%',
409 '$relation' => '@relation',
412 Database\Structure\RealRowCountController::class => [
413 'class' => Database\Structure\RealRowCountController::class,
414 'arguments' => [
415 '$response' => '@response',
416 '$template' => '@template',
417 '$db' => '%db%',
418 '$dbi' => '@dbi',
421 Database\Structure\ReplacePrefixController::class => [
422 'class' => Database\Structure\ReplacePrefixController::class,
423 'arguments' => [
424 '$response' => '@response',
425 '$template' => '@template',
426 '$db' => '%db%',
427 '$dbi' => '@dbi',
428 '$structureController' => '@' . Database\StructureController::class,
431 Database\Structure\ShowCreateController::class => [
432 'class' => Database\Structure\ShowCreateController::class,
433 'arguments' => [
434 '$response' => '@response',
435 '$template' => '@template',
436 '$db' => '%db%',
437 '$dbi' => '@dbi',
440 Database\StructureController::class => [
441 'class' => Database\StructureController::class,
442 'arguments' => [
443 '$response' => '@response',
444 '$template' => '@template',
445 '$db' => '%db%',
446 '$relation' => '@relation',
447 '$replication' => '@replication',
448 '$relationCleanup' => '@relation_cleanup',
449 '$operations' => '@operations',
450 '$dbi' => '@dbi',
451 '$flash' => '@flash',
454 Database\TrackingController::class => [
455 'class' => Database\TrackingController::class,
456 'arguments' => [
457 '$response' => '@response',
458 '$template' => '@template',
459 '$db' => '%db%',
460 '$tracking' => '@tracking',
461 '$dbi' => '@dbi',
464 Database\TriggersController::class => [
465 'class' => Database\TriggersController::class,
466 'arguments' => [
467 '$response' => '@response',
468 '$template' => '@template',
469 '$db' => '%db%',
470 '$dbi' => '@dbi',
473 DatabaseController::class => [
474 'class' => DatabaseController::class,
475 'arguments' => [
476 '$response' => '@response',
477 '$template' => '@template',
480 ErrorReportController::class => [
481 'class' => ErrorReportController::class,
482 'arguments' => [
483 '$response' => '@response',
484 '$template' => '@template',
485 '$errorReport' => '@error_report',
486 '$errorHandler' => '@error_handler',
489 Export\CheckTimeOutController::class => [
490 'class' => Export\CheckTimeOutController::class,
491 'arguments' => [
492 '$response' => '@response',
493 '$template' => '@template',
496 Export\ExportController::class => [
497 'class' => Export\ExportController::class,
498 'arguments' => [
499 '$response' => '@response',
500 '$template' => '@template',
501 '$export' => '@export',
504 Export\TablesController::class => [
505 'class' => Export\TablesController::class,
506 'arguments' => [
507 '$response' => '@response',
508 '$template' => '@template',
509 '$exportController' => '@' . Database\ExportController::class,
512 Export\Template\CreateController::class => [
513 'class' => Export\Template\CreateController::class,
514 'arguments' => [
515 '$response' => '@response',
516 '$template' => '@template',
517 '$model' => '@export_template_model',
518 '$relation' => '@relation',
521 Export\Template\DeleteController::class => [
522 'class' => Export\Template\DeleteController::class,
523 'arguments' => [
524 '$response' => '@response',
525 '$template' => '@template',
526 '$model' => '@export_template_model',
527 '$relation' => '@relation',
530 Export\Template\LoadController::class => [
531 'class' => Export\Template\LoadController::class,
532 'arguments' => [
533 '$response' => '@response',
534 '$template' => '@template',
535 '$model' => '@export_template_model',
536 '$relation' => '@relation',
539 Export\Template\UpdateController::class => [
540 'class' => Export\Template\UpdateController::class,
541 'arguments' => [
542 '$response' => '@response',
543 '$template' => '@template',
544 '$model' => '@export_template_model',
545 '$relation' => '@relation',
548 GisDataEditorController::class => [
549 'class' => GisDataEditorController::class,
550 'arguments' => [
551 '$response' => '@response',
552 '$template' => '@template',
555 GitInfoController::class => [
556 'class' => GitInfoController::class,
557 'arguments' => [
558 '$response' => '@response',
559 '$template' => '@template',
560 '$config' => '@config',
563 HomeController::class => [
564 'class' => HomeController::class,
565 'arguments' => [
566 '$response' => '@response',
567 '$template' => '@template',
568 '$config' => '@config',
569 '$themeManager' => '@theme_manager',
570 '$dbi' => '@dbi',
573 Import\ImportController::class => [
574 'class' => Import\ImportController::class,
575 'arguments' => [
576 '$response' => '@response',
577 '$template' => '@template',
578 '$import' => '@import',
579 '$sql' => '@sql',
580 '$dbi' => '@dbi',
583 Import\SimulateDmlController::class => [
584 'class' => Import\SimulateDmlController::class,
585 'arguments' => [
586 '$response' => '@response',
587 '$template' => '@template',
588 '$simulateDml' => '@import_simulate_dml',
591 Import\StatusController::class => [
592 'class' => Import\StatusController::class,
593 'arguments' => ['$template' => '@template'],
595 JavaScriptMessagesController::class => [
596 'class' => JavaScriptMessagesController::class,
598 LicenseController::class => [
599 'class' => LicenseController::class,
600 'arguments' => [
601 '$response' => '@response',
602 '$template' => '@template',
605 LintController::class => [
606 'class' => LintController::class,
607 'arguments' => [
608 '$response' => '@response',
609 '$template' => '@template',
612 LogoutController::class => [
613 'class' => LogoutController::class,
615 NavigationController::class => [
616 'class' => NavigationController::class,
617 'arguments' => [
618 '$response' => '@response',
619 '$template' => '@template',
620 '$navigation' => '@navigation',
621 '$relation' => '@relation',
624 NormalizationController::class => [
625 'class' => NormalizationController::class,
626 'arguments' => [
627 '$response' => '@response',
628 '$template' => '@template',
629 '$normalization' => '@normalization',
632 PhpInfoController::class => [
633 'class' => PhpInfoController::class,
634 'arguments' => [
635 '$response' => '@response',
636 '$template' => '@template',
639 RecentTablesListController::class => [
640 'class' => RecentTablesListController::class,
641 'arguments' => [
642 '$response' => '@response',
643 '$template' => '@template',
646 Preferences\ExportController::class => [
647 'class' => Preferences\ExportController::class,
648 'arguments' => [
649 '$response' => '@response',
650 '$template' => '@template',
651 '$userPreferences' => '@user_preferences',
652 '$relation' => '@relation',
653 '$config' => '@config',
656 Preferences\FeaturesController::class => [
657 'class' => Preferences\FeaturesController::class,
658 'arguments' => [
659 '$response' => '@response',
660 '$template' => '@template',
661 '$userPreferences' => '@user_preferences',
662 '$relation' => '@relation',
663 '$config' => '@config',
666 Preferences\ImportController::class => [
667 'class' => Preferences\ImportController::class,
668 'arguments' => [
669 '$response' => '@response',
670 '$template' => '@template',
671 '$userPreferences' => '@user_preferences',
672 '$relation' => '@relation',
673 '$config' => '@config',
676 Preferences\MainPanelController::class => [
677 'class' => Preferences\MainPanelController::class,
678 'arguments' => [
679 '$response' => '@response',
680 '$template' => '@template',
681 '$userPreferences' => '@user_preferences',
682 '$relation' => '@relation',
683 '$config' => '@config',
686 Preferences\ManageController::class => [
687 'class' => Preferences\ManageController::class,
688 'arguments' => [
689 '$response' => '@response',
690 '$template' => '@template',
691 '$userPreferences' => '@user_preferences',
692 '$relation' => '@relation',
693 '$config' => '@config',
696 Preferences\NavigationController::class => [
697 'class' => Preferences\NavigationController::class,
698 'arguments' => [
699 '$response' => '@response',
700 '$template' => '@template',
701 '$userPreferences' => '@user_preferences',
702 '$relation' => '@relation',
703 '$config' => '@config',
706 Preferences\SqlController::class => [
707 'class' => Preferences\SqlController::class,
708 'arguments' => [
709 '$response' => '@response',
710 '$template' => '@template',
711 '$userPreferences' => '@user_preferences',
712 '$relation' => '@relation',
713 '$config' => '@config',
716 Preferences\TwoFactorController::class => [
717 'class' => Preferences\TwoFactorController::class,
718 'arguments' => [
719 '$response' => '@response',
720 '$template' => '@template',
721 '$relation' => '@relation',
724 SchemaExportController::class => [
725 'class' => SchemaExportController::class,
726 'arguments' => ['$export' => '@export'],
728 Server\BinlogController::class => [
729 'class' => Server\BinlogController::class,
730 'arguments' => [
731 '$response' => '@response',
732 '$template' => '@template',
733 '$dbi' => '@dbi',
736 Server\CollationsController::class => [
737 'class' => Server\CollationsController::class,
738 'arguments' => [
739 '$response' => '@response',
740 '$template' => '@template',
741 '$dbi' => '@dbi',
744 Server\Databases\CreateController::class => [
745 'class' => Server\Databases\CreateController::class,
746 'arguments' => [
747 '$response' => '@response',
748 '$template' => '@template',
749 '$dbi' => '@dbi',
752 Server\Databases\DestroyController::class => [
753 'class' => Server\Databases\DestroyController::class,
754 'arguments' => [
755 '$response' => '@response',
756 '$template' => '@template',
757 '$dbi' => '@dbi',
758 '$transformations' => '@transformations',
759 '$relationCleanup' => '@relation_cleanup',
762 Server\DatabasesController::class => [
763 'class' => Server\DatabasesController::class,
764 'arguments' => [
765 '$response' => '@response',
766 '$template' => '@template',
767 '$transformations' => '@transformations',
768 '$relationCleanup' => '@relation_cleanup',
769 '$dbi' => '@dbi',
772 Server\EnginesController::class => [
773 'class' => Server\EnginesController::class,
774 'arguments' => [
775 '$response' => '@response',
776 '$template' => '@template',
777 '$dbi' => '@dbi',
780 Server\ExportController::class => [
781 'class' => Server\ExportController::class,
782 'arguments' => [
783 '$response' => '@response',
784 '$template' => '@template',
785 '$export' => '@export_options',
786 '$dbi' => '@dbi',
789 Server\ImportController::class => [
790 'class' => Server\ImportController::class,
791 'arguments' => [
792 '$response' => '@response',
793 '$template' => '@template',
794 '$dbi' => '@dbi',
797 Server\PluginsController::class => [
798 'class' => Server\PluginsController::class,
799 'arguments' => [
800 '$response' => '@response',
801 '$template' => '@template',
802 '$plugins' => '@server_plugins',
803 '$dbi' => '@dbi',
806 Server\Privileges\AccountLockController::class => [
807 'class' => Server\Privileges\AccountLockController::class,
808 'arguments' => [
809 '$response' => '@response',
810 '$template' => '@template',
811 '$accountLocking' => '@server_privileges_account_locking',
814 Server\Privileges\AccountUnlockController::class => [
815 'class' => Server\Privileges\AccountUnlockController::class,
816 'arguments' => [
817 '$response' => '@response',
818 '$template' => '@template',
819 '$accountLocking' => '@server_privileges_account_locking',
822 Server\PrivilegesController::class => [
823 'class' => Server\PrivilegesController::class,
824 'arguments' => [
825 '$response' => '@response',
826 '$template' => '@template',
827 '$relation' => '@relation',
828 '$dbi' => '@dbi',
831 Server\ReplicationController::class => [
832 'class' => Server\ReplicationController::class,
833 'arguments' => [
834 '$response' => '@response',
835 '$template' => '@template',
836 '$replicationGui' => '@replication_gui',
837 '$dbi' => '@dbi',
840 Server\ShowEngineController::class => [
841 'class' => Server\ShowEngineController::class,
842 'arguments' => [
843 '$response' => '@response',
844 '$template' => '@template',
845 '$dbi' => '@dbi',
848 Server\SqlController::class => [
849 'class' => Server\SqlController::class,
850 'arguments' => [
851 '$response' => '@response',
852 '$template' => '@template',
853 '$sqlQueryForm' => '@sql_query_form',
854 '$dbi' => '@dbi',
857 Server\UserGroupsController::class => [
858 'class' => Server\UserGroupsController::class,
859 'arguments' => [
860 '$response' => '@response',
861 '$template' => '@template',
862 '$relation' => '@relation',
863 '$dbi' => '@dbi',
866 Server\UserGroupsFormController::class => [
867 'class' => Server\UserGroupsFormController::class,
868 'arguments' => [
869 '$response' => '@response',
870 '$template' => '@template',
871 '$relation' => '@relation',
872 '$dbi' => '@dbi',
875 Server\Status\AdvisorController::class => [
876 'class' => Server\Status\AdvisorController::class,
877 'arguments' => [
878 '$response' => '@response',
879 '$template' => '@template',
880 '$data' => '@status_data',
881 '$advisor' => '@advisor',
884 Server\Status\Monitor\ChartingDataController::class => [
885 'class' => Server\Status\Monitor\ChartingDataController::class,
886 'arguments' => [
887 '$response' => '@response',
888 '$template' => '@template',
889 '$data' => '@status_data',
890 '$monitor' => '@status_monitor',
891 '$dbi' => '@dbi',
894 Server\Status\Monitor\GeneralLogController::class => [
895 'class' => Server\Status\Monitor\GeneralLogController::class,
896 'arguments' => [
897 '$response' => '@response',
898 '$template' => '@template',
899 '$data' => '@status_data',
900 '$monitor' => '@status_monitor',
901 '$dbi' => '@dbi',
904 Server\Status\Monitor\LogVarsController::class => [
905 'class' => Server\Status\Monitor\LogVarsController::class,
906 'arguments' => [
907 '$response' => '@response',
908 '$template' => '@template',
909 '$data' => '@status_data',
910 '$monitor' => '@status_monitor',
911 '$dbi' => '@dbi',
914 Server\Status\Monitor\QueryAnalyzerController::class => [
915 'class' => Server\Status\Monitor\QueryAnalyzerController::class,
916 'arguments' => [
917 '$response' => '@response',
918 '$template' => '@template',
919 '$data' => '@status_data',
920 '$monitor' => '@status_monitor',
921 '$dbi' => '@dbi',
924 Server\Status\Monitor\SlowLogController::class => [
925 'class' => Server\Status\Monitor\SlowLogController::class,
926 'arguments' => [
927 '$response' => '@response',
928 '$template' => '@template',
929 '$data' => '@status_data',
930 '$monitor' => '@status_monitor',
931 '$dbi' => '@dbi',
934 Server\Status\MonitorController::class => [
935 'class' => Server\Status\MonitorController::class,
936 'arguments' => [
937 '$response' => '@response',
938 '$template' => '@template',
939 '$data' => '@status_data',
940 '$dbi' => '@dbi',
943 Server\Status\Processes\KillController::class => [
944 'class' => Server\Status\Processes\KillController::class,
945 'arguments' => [
946 '$response' => '@response',
947 '$template' => '@template',
948 '$data' => '@status_data',
949 '$dbi' => '@dbi',
952 Server\Status\Processes\RefreshController::class => [
953 'class' => Server\Status\Processes\RefreshController::class,
954 'arguments' => [
955 '$response' => '@response',
956 '$template' => '@template',
957 '$data' => '@status_data',
958 '$processes' => '@status_processes',
961 Server\Status\ProcessesController::class => [
962 'class' => Server\Status\ProcessesController::class,
963 'arguments' => [
964 '$response' => '@response',
965 '$template' => '@template',
966 '$data' => '@status_data',
967 '$dbi' => '@dbi',
968 '$processes' => '@status_processes',
971 Server\Status\QueriesController::class => [
972 'class' => Server\Status\QueriesController::class,
973 'arguments' => [
974 '$response' => '@response',
975 '$template' => '@template',
976 '$data' => '@status_data',
977 '$dbi' => '@dbi',
980 Server\Status\StatusController::class => [
981 'class' => Server\Status\StatusController::class,
982 'arguments' => [
983 '$response' => '@response',
984 '$template' => '@template',
985 '$data' => '@status_data',
986 '$replicationGui' => '@replication_gui',
987 '$dbi' => '@dbi',
990 Server\Status\VariablesController::class => [
991 'class' => Server\Status\VariablesController::class,
992 'arguments' => [
993 '$response' => '@response',
994 '$template' => '@template',
995 '$data' => '@status_data',
996 '$dbi' => '@dbi',
999 Server\Variables\GetVariableController::class => [
1000 'class' => Server\Variables\GetVariableController::class,
1001 'arguments' => [
1002 '$response' => '@response',
1003 '$template' => '@template',
1004 '$dbi' => '@dbi',
1007 Server\Variables\SetVariableController::class => [
1008 'class' => Server\Variables\SetVariableController::class,
1009 'arguments' => [
1010 '$response' => '@response',
1011 '$template' => '@template',
1012 '$dbi' => '@dbi',
1015 Server\VariablesController::class => [
1016 'class' => Server\VariablesController::class,
1017 'arguments' => [
1018 '$response' => '@response',
1019 '$template' => '@template',
1020 '$dbi' => '@dbi',
1023 Sql\ColumnPreferencesController::class => [
1024 'class' => Sql\ColumnPreferencesController::class,
1025 'arguments' => [
1026 '$response' => '@response',
1027 '$template' => '@template',
1028 '$sql' => '@sql',
1029 '$checkUserPrivileges' => '@check_user_privileges',
1030 '$dbi' => '@dbi',
1033 Sql\DefaultForeignKeyCheckValueController::class => [
1034 'class' => Sql\DefaultForeignKeyCheckValueController::class,
1035 'arguments' => [
1036 '$response' => '@response',
1037 '$template' => '@template',
1038 '$checkUserPrivileges' => '@check_user_privileges',
1041 Sql\EnumValuesController::class => [
1042 'class' => Sql\EnumValuesController::class,
1043 'arguments' => [
1044 '$response' => '@response',
1045 '$template' => '@template',
1046 '$sql' => '@sql',
1047 '$checkUserPrivileges' => '@check_user_privileges',
1050 Sql\RelationalValuesController::class => [
1051 'class' => Sql\RelationalValuesController::class,
1052 'arguments' => [
1053 '$response' => '@response',
1054 '$template' => '@template',
1055 '$sql' => '@sql',
1056 '$checkUserPrivileges' => '@check_user_privileges',
1059 Sql\SetValuesController::class => [
1060 'class' => Sql\SetValuesController::class,
1061 'arguments' => [
1062 '$response' => '@response',
1063 '$template' => '@template',
1064 '$sql' => '@sql',
1065 '$checkUserPrivileges' => '@check_user_privileges',
1068 Sql\SqlController::class => [
1069 'class' => Sql\SqlController::class,
1070 'arguments' => [
1071 '$response' => '@response',
1072 '$template' => '@template',
1073 '$sql' => '@sql',
1074 '$checkUserPrivileges' => '@check_user_privileges',
1075 '$dbi' => '@dbi',
1078 Table\AddFieldController::class => [
1079 'class' => Table\AddFieldController::class,
1080 'arguments' => [
1081 '$response' => '@response',
1082 '$template' => '@template',
1083 '$db' => '%db%',
1084 '$table' => '%table%',
1085 '$transformations' => '@transformations',
1086 '$config' => '@config',
1087 '$relation' => '@relation',
1088 '$dbi' => '@dbi',
1091 Table\ChangeController::class => [
1092 'class' => Table\ChangeController::class,
1093 'arguments' => [
1094 '$response' => '@response',
1095 '$template' => '@template',
1096 '$db' => '%db%',
1097 '$table' => '%table%',
1098 '$insertEdit' => '@insert_edit',
1099 '$relation' => '@relation',
1102 Table\ChangeRowsController::class => [
1103 'class' => Table\ChangeRowsController::class,
1104 'arguments' => [
1105 '$response' => '@response',
1106 '$template' => '@template',
1107 '$db' => '%db%',
1108 '$table' => '%table%',
1109 '$changeController' => '@' . Table\ChangeController::class,
1112 Table\ChartController::class => [
1113 'class' => Table\ChartController::class,
1114 'arguments' => [
1115 '$response' => '@response',
1116 '$template' => '@template',
1117 '$db' => '%db%',
1118 '$table' => '%table%',
1119 '$dbi' => '@dbi',
1122 Table\CreateController::class => [
1123 'class' => Table\CreateController::class,
1124 'arguments' => [
1125 '$response' => '@response',
1126 '$template' => '@template',
1127 '$db' => '%db%',
1128 '$table' => '%table%',
1129 '$transformations' => '@transformations',
1130 '$config' => '@config',
1131 '$relation' => '@relation',
1132 '$dbi' => '@dbi',
1135 Table\DeleteConfirmController::class => [
1136 'class' => Table\DeleteConfirmController::class,
1137 'arguments' => [
1138 '$response' => '@response',
1139 '$template' => '@template',
1140 '$db' => '%db%',
1141 '$table' => '%table%',
1144 Table\DeleteRowsController::class => [
1145 'class' => Table\DeleteRowsController::class,
1146 'arguments' => [
1147 '$response' => '@response',
1148 '$template' => '@template',
1149 '$db' => '%db%',
1150 '$table' => '%table%',
1151 '$dbi' => '@dbi',
1154 Table\DropColumnConfirmationController::class => [
1155 'class' => Table\DropColumnConfirmationController::class,
1156 'arguments' => [
1157 '$response' => '@response',
1158 '$template' => '@template',
1159 '$db' => '%db%',
1160 '$table' => '%table%',
1163 Table\DropColumnController::class => [
1164 'class' => Table\DropColumnController::class,
1165 'arguments' => [
1166 '$response' => '@response',
1167 '$template' => '@template',
1168 '$db' => '%db%',
1169 '$table' => '%table%',
1170 '$dbi' => '@dbi',
1171 '$flash' => '@flash',
1172 '$relationCleanup' => '@relation_cleanup',
1175 Table\ExportController::class => [
1176 'class' => Table\ExportController::class,
1177 'arguments' => [
1178 '$response' => '@response',
1179 '$template' => '@template',
1180 '$db' => '%db%',
1181 '$table' => '%table%',
1182 '$export' => '@export_options',
1185 Table\ExportRowsController::class => [
1186 'class' => Table\ExportRowsController::class,
1187 'arguments' => [
1188 '$response' => '@response',
1189 '$template' => '@template',
1190 '$db' => '%db%',
1191 '$table' => '%table%',
1192 '$exportController' => '@' . Table\ExportController::class,
1195 Table\FindReplaceController::class => [
1196 'class' => Table\FindReplaceController::class,
1197 'arguments' => [
1198 '$response' => '@response',
1199 '$template' => '@template',
1200 '$db' => '%db%',
1201 '$table' => '%table%',
1202 '$dbi' => '@dbi',
1205 Table\GetFieldController::class => [
1206 'class' => Table\GetFieldController::class,
1207 'arguments' => [
1208 '$response' => '@response',
1209 '$template' => '@template',
1210 '$db' => '%db%',
1211 '$table' => '%table%',
1212 '$dbi' => '@dbi',
1215 Table\GisVisualizationController::class => [
1216 'class' => Table\GisVisualizationController::class,
1217 'arguments' => [
1218 '$response' => '@response',
1219 '$template' => '@template',
1220 '$db' => '%db%',
1221 '$table' => '%table%',
1222 '$dbi' => '@dbi',
1225 Table\ImportController::class => [
1226 'class' => Table\ImportController::class,
1227 'arguments' => [
1228 '$response' => '@response',
1229 '$template' => '@template',
1230 '$db' => '%db%',
1231 '$table' => '%table%',
1232 '$dbi' => '@dbi',
1235 Table\IndexesController::class => [
1236 'class' => Table\IndexesController::class,
1237 'arguments' => [
1238 '$response' => '@response',
1239 '$template' => '@template',
1240 '$db' => '%db%',
1241 '$table' => '%table%',
1242 '$dbi' => '@dbi',
1243 '$indexes' => '@table_indexes',
1246 Table\IndexRenameController::class => [
1247 'class' => Table\IndexRenameController::class,
1248 'arguments' => [
1249 '$response' => '@response',
1250 '$template' => '@template',
1251 '$db' => '%db%',
1252 '$table' => '%table%',
1253 '$dbi' => '@dbi',
1254 '$indexes' => '@table_indexes',
1257 Table\Maintenance\AnalyzeController::class => [
1258 'class' => Table\Maintenance\AnalyzeController::class,
1259 'arguments' => [
1260 '$response' => '@response',
1261 '$template' => '@template',
1262 '$db' => '%db%',
1263 '$table' => '%table%',
1264 '$model' => '@table_maintenance',
1265 '$config' => '@config',
1268 Table\Maintenance\CheckController::class => [
1269 'class' => Table\Maintenance\CheckController::class,
1270 'arguments' => [
1271 '$response' => '@response',
1272 '$template' => '@template',
1273 '$db' => '%db%',
1274 '$table' => '%table%',
1275 '$model' => '@table_maintenance',
1276 '$config' => '@config',
1279 Table\Maintenance\ChecksumController::class => [
1280 'class' => Table\Maintenance\ChecksumController::class,
1281 'arguments' => [
1282 '$response' => '@response',
1283 '$template' => '@template',
1284 '$db' => '%db%',
1285 '$table' => '%table%',
1286 '$model' => '@table_maintenance',
1287 '$config' => '@config',
1290 Table\Maintenance\OptimizeController::class => [
1291 'class' => Table\Maintenance\OptimizeController::class,
1292 'arguments' => [
1293 '$response' => '@response',
1294 '$template' => '@template',
1295 '$db' => '%db%',
1296 '$table' => '%table%',
1297 '$model' => '@table_maintenance',
1298 '$config' => '@config',
1301 Table\Maintenance\RepairController::class => [
1302 'class' => Table\Maintenance\RepairController::class,
1303 'arguments' => [
1304 '$response' => '@response',
1305 '$template' => '@template',
1306 '$db' => '%db%',
1307 '$table' => '%table%',
1308 '$model' => '@table_maintenance',
1309 '$config' => '@config',
1312 Table\Partition\AnalyzeController::class => [
1313 'class' => Table\Partition\AnalyzeController::class,
1314 'arguments' => [
1315 '$response' => '@response',
1316 '$template' => '@template',
1317 '$db' => '%db%',
1318 '$table' => '%table%',
1319 '$maintenance' => '@partitioning_maintenance',
1322 Table\Partition\CheckController::class => [
1323 'class' => Table\Partition\CheckController::class,
1324 'arguments' => [
1325 '$response' => '@response',
1326 '$template' => '@template',
1327 '$db' => '%db%',
1328 '$table' => '%table%',
1329 '$maintenance' => '@partitioning_maintenance',
1332 Table\Partition\DropController::class => [
1333 'class' => Table\Partition\DropController::class,
1334 'arguments' => [
1335 '$response' => '@response',
1336 '$template' => '@template',
1337 '$db' => '%db%',
1338 '$table' => '%table%',
1339 '$maintenance' => '@partitioning_maintenance',
1342 Table\Partition\OptimizeController::class => [
1343 'class' => Table\Partition\OptimizeController::class,
1344 'arguments' => [
1345 '$response' => '@response',
1346 '$template' => '@template',
1347 '$db' => '%db%',
1348 '$table' => '%table%',
1349 '$maintenance' => '@partitioning_maintenance',
1352 Table\Partition\RebuildController::class => [
1353 'class' => Table\Partition\RebuildController::class,
1354 'arguments' => [
1355 '$response' => '@response',
1356 '$template' => '@template',
1357 '$db' => '%db%',
1358 '$table' => '%table%',
1359 '$maintenance' => '@partitioning_maintenance',
1362 Table\Partition\RepairController::class => [
1363 'class' => Table\Partition\RepairController::class,
1364 'arguments' => [
1365 '$response' => '@response',
1366 '$template' => '@template',
1367 '$db' => '%db%',
1368 '$table' => '%table%',
1369 '$maintenance' => '@partitioning_maintenance',
1372 Table\Partition\TruncateController::class => [
1373 'class' => Table\Partition\TruncateController::class,
1374 'arguments' => [
1375 '$response' => '@response',
1376 '$template' => '@template',
1377 '$db' => '%db%',
1378 '$table' => '%table%',
1379 '$maintenance' => '@partitioning_maintenance',
1382 Table\OperationsController::class => [
1383 'class' => Table\OperationsController::class,
1384 'arguments' => [
1385 '$response' => '@response',
1386 '$template' => '@template',
1387 '$db' => '%db%',
1388 '$table' => '%table%',
1389 '$operations' => '@operations',
1390 '$checkUserPrivileges' => '@check_user_privileges',
1391 '$relation' => '@relation',
1392 '$dbi' => '@dbi',
1395 Table\PrivilegesController::class => [
1396 'class' => Table\PrivilegesController::class,
1397 'arguments' => [
1398 '$response' => '@response',
1399 '$template' => '@template',
1400 '$db' => '%db%',
1401 '$table' => '%table%',
1402 '$privileges' => '@server_privileges',
1403 '$dbi' => '@dbi',
1406 Table\RecentFavoriteController::class => [
1407 'class' => Table\RecentFavoriteController::class,
1408 'arguments' => [
1409 '$response' => '@response',
1410 '$template' => '@template',
1411 '$db' => '%db%',
1412 '$table' => '%table%',
1415 Table\RelationController::class => [
1416 'class' => Table\RelationController::class,
1417 'arguments' => [
1418 '$response' => '@response',
1419 '$template' => '@template',
1420 '$db' => '%db%',
1421 '$table' => '%table%',
1422 '$relation' => '@relation',
1423 '$dbi' => '@dbi',
1426 Table\ReplaceController::class => [
1427 'class' => Table\ReplaceController::class,
1428 'arguments' => [
1429 '$response' => '@response',
1430 '$template' => '@template',
1431 '$db' => '%db%',
1432 '$table' => '%table%',
1433 '$insertEdit' => '@insert_edit',
1434 '$transformations' => '@transformations',
1435 '$relation' => '@relation',
1436 '$dbi' => '@dbi',
1439 Table\SearchController::class => [
1440 'class' => Table\SearchController::class,
1441 'arguments' => [
1442 '$response' => '@response',
1443 '$template' => '@template',
1444 '$db' => '%db%',
1445 '$table' => '%table%',
1446 '$search' => '@table_search',
1447 '$relation' => '@relation',
1448 '$dbi' => '@dbi',
1451 Table\SqlController::class => [
1452 'class' => Table\SqlController::class,
1453 'arguments' => [
1454 '$response' => '@response',
1455 '$template' => '@template',
1456 '$db' => '%db%',
1457 '$table' => '%table%',
1458 '$sqlQueryForm' => '@sql_query_form',
1461 Table\Structure\AddIndexController::class => [
1462 'class' => Table\Structure\AddIndexController::class,
1463 'arguments' => [
1464 '$response' => '@response',
1465 '$template' => '@template',
1466 '$db' => '%db%',
1467 '$table' => '%table%',
1468 '$dbi' => '@dbi',
1469 '$structureController' => '@' . Table\StructureController::class,
1472 Table\Structure\AddKeyController::class => [
1473 'class' => Table\Structure\AddKeyController::class,
1474 'arguments' => [
1475 '$response' => '@response',
1476 '$template' => '@template',
1477 '$db' => '%db%',
1478 '$table' => '%table%',
1479 '$sqlController' => '@' . Sql\SqlController::class,
1480 '$structureController' => '@' . Table\StructureController::class,
1483 Table\Structure\BrowseController::class => [
1484 'class' => Table\Structure\BrowseController::class,
1485 'arguments' => [
1486 '$response' => '@response',
1487 '$template' => '@template',
1488 '$db' => '%db%',
1489 '$table' => '%table%',
1490 '$sql' => '@sql',
1493 Table\Structure\CentralColumnsAddController::class => [
1494 'class' => Table\Structure\CentralColumnsAddController::class,
1495 'arguments' => [
1496 '$response' => '@response',
1497 '$template' => '@template',
1498 '$db' => '%db%',
1499 '$table' => '%table%',
1500 '$centralColumns' => '@central_columns',
1501 '$structureController' => '@' . Table\StructureController::class,
1504 Table\Structure\CentralColumnsRemoveController::class => [
1505 'class' => Table\Structure\CentralColumnsRemoveController::class,
1506 'arguments' => [
1507 '$response' => '@response',
1508 '$template' => '@template',
1509 '$db' => '%db%',
1510 '$table' => '%table%',
1511 '$centralColumns' => '@central_columns',
1512 '$structureController' => '@' . Table\StructureController::class,
1515 Table\Structure\ChangeController::class => [
1516 'class' => Table\Structure\ChangeController::class,
1517 'arguments' => [
1518 '$response' => '@response',
1519 '$template' => '@template',
1520 '$db' => '%db%',
1521 '$table' => '%table%',
1522 '$relation' => '@relation',
1523 '$transformations' => '@transformations',
1524 '$dbi' => '@dbi',
1527 Table\Structure\FulltextController::class => [
1528 'class' => Table\Structure\FulltextController::class,
1529 'arguments' => [
1530 '$response' => '@response',
1531 '$template' => '@template',
1532 '$db' => '%db%',
1533 '$table' => '%table%',
1534 '$dbi' => '@dbi',
1535 '$structureController' => '@' . Table\StructureController::class,
1538 Table\Structure\MoveColumnsController::class => [
1539 'class' => Table\Structure\MoveColumnsController::class,
1540 'arguments' => [
1541 '$response' => '@response',
1542 '$template' => '@template',
1543 '$db' => '%db%',
1544 '$table' => '%table%',
1545 '$dbi' => '@dbi',
1548 Table\Structure\PartitioningController::class => [
1549 'class' => Table\Structure\PartitioningController::class,
1550 'arguments' => [
1551 '$response' => '@response',
1552 '$template' => '@template',
1553 '$db' => '%db%',
1554 '$table' => '%table%',
1555 '$dbi' => '@dbi',
1556 '$createAddField' => '@create_add_field',
1557 '$structureController' => '@' . Table\StructureController::class,
1560 Table\Structure\PrimaryController::class => [
1561 'class' => Table\Structure\PrimaryController::class,
1562 'arguments' => [
1563 '$response' => '@response',
1564 '$template' => '@template',
1565 '$db' => '%db%',
1566 '$table' => '%table%',
1567 '$dbi' => '@dbi',
1568 '$structureController' => '@' . Table\StructureController::class,
1571 Table\Structure\ReservedWordCheckController::class => [
1572 'class' => Table\Structure\ReservedWordCheckController::class,
1573 'arguments' => [
1574 '$response' => '@response',
1575 '$template' => '@template',
1576 '$db' => '%db%',
1577 '$table' => '%table%',
1580 Table\Structure\SaveController::class => [
1581 'class' => Table\Structure\SaveController::class,
1582 'arguments' => [
1583 '$response' => '@response',
1584 '$template' => '@template',
1585 '$db' => '%db%',
1586 '$table' => '%table%',
1587 '$relation' => '@relation',
1588 '$transformations' => '@transformations',
1589 '$dbi' => '@dbi',
1590 '$structureController' => '@' . Table\StructureController::class,
1593 Table\Structure\SpatialController::class => [
1594 'class' => Table\Structure\SpatialController::class,
1595 'arguments' => [
1596 '$response' => '@response',
1597 '$template' => '@template',
1598 '$db' => '%db%',
1599 '$table' => '%table%',
1600 '$dbi' => '@dbi',
1601 '$structureController' => '@' . Table\StructureController::class,
1604 Table\Structure\UniqueController::class => [
1605 'class' => Table\Structure\UniqueController::class,
1606 'arguments' => [
1607 '$response' => '@response',
1608 '$template' => '@template',
1609 '$db' => '%db%',
1610 '$table' => '%table%',
1611 '$dbi' => '@dbi',
1612 '$structureController' => '@' . Table\StructureController::class,
1615 Table\StructureController::class => [
1616 'class' => Table\StructureController::class,
1617 'arguments' => [
1618 '$response' => '@response',
1619 '$template' => '@template',
1620 '$db' => '%db%',
1621 '$table' => '%table%',
1622 '$relation' => '@relation',
1623 '$transformations' => '@transformations',
1624 '$createAddField' => '@create_add_field',
1625 '$relationCleanup' => '@relation_cleanup',
1626 '$dbi' => '@dbi',
1627 '$flash' => '@flash',
1630 Table\TrackingController::class => [
1631 'class' => Table\TrackingController::class,
1632 'arguments' => [
1633 '$response' => '@response',
1634 '$template' => '@template',
1635 '$db' => '%db%',
1636 '$table' => '%table%',
1637 '$tracking' => '@tracking',
1640 Table\TriggersController::class => [
1641 'class' => Table\TriggersController::class,
1642 'arguments' => [
1643 '$response' => '@response',
1644 '$template' => '@template',
1645 '$db' => '%db%',
1646 '$table' => '%table%',
1647 '$dbi' => '@dbi',
1650 Table\ZoomSearchController::class => [
1651 'class' => Table\ZoomSearchController::class,
1652 'arguments' => [
1653 '$response' => '@response',
1654 '$template' => '@template',
1655 '$db' => '%db%',
1656 '$table' => '%table%',
1657 '$search' => '@table_search',
1658 '$relation' => '@relation',
1659 '$dbi' => '@dbi',
1662 TableController::class => [
1663 'class' => TableController::class,
1664 'arguments' => [
1665 '$response' => '@response',
1666 '$template' => '@template',
1667 '$dbi' => '@dbi',
1670 ThemesController::class => [
1671 'class' => ThemesController::class,
1672 'arguments' => [
1673 '$response' => '@response',
1674 '$template' => '@template',
1675 '$themeManager' => '@theme_manager',
1678 ThemeSetController::class => [
1679 'class' => ThemeSetController::class,
1680 'arguments' => [
1681 '$response' => '@response',
1682 '$template' => '@template',
1683 '$themeManager' => '@theme_manager',
1686 Transformation\OverviewController::class => [
1687 'class' => Transformation\OverviewController::class,
1688 'arguments' => [
1689 '$response' => '@response',
1690 '$template' => '@template',
1691 '$transformations' => '@transformations',
1694 Transformation\WrapperController::class => [
1695 'class' => Transformation\WrapperController::class,
1696 'arguments' => [
1697 '$response' => '@response',
1698 '$template' => '@template',
1699 '$transformations' => '@transformations',
1700 '$relation' => '@relation',
1701 '$dbi' => '@dbi',
1704 UserPasswordController::class => [
1705 'class' => UserPasswordController::class,
1706 'arguments' => [
1707 '$response' => '@response',
1708 '$template' => '@template',
1709 '$userPassword' => '@user_password',
1710 '$dbi' => '@dbi',
1713 VersionCheckController::class => [
1714 'class' => VersionCheckController::class,
1715 'arguments' => [
1716 '$response' => '@response',
1717 '$template' => '@template',
1720 View\CreateController::class => [
1721 'class' => View\CreateController::class,
1722 'arguments' => [
1723 '$response' => '@response',
1724 '$template' => '@template',
1725 '$dbi' => '@dbi',
1728 View\OperationsController::class => [
1729 'class' => View\OperationsController::class,
1730 'arguments' => [
1731 '$response' => '@response',
1732 '$template' => '@template',
1733 '$operations' => '@operations',
1734 '$dbi' => '@dbi',