123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911 |
- <?php
- declare(strict_types=1);
- return [
- 'services' => [
- PhpMyAdmin\Controllers\BrowseForeignersController::class => [
- 'class' => PhpMyAdmin\Controllers\BrowseForeignersController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$browseForeigners' => '@browse_foreigners',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\ChangeLogController::class => [
- 'class' => PhpMyAdmin\Controllers\ChangeLogController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- ],
- ],
- PhpMyAdmin\Controllers\CheckRelationsController::class => [
- 'class' => PhpMyAdmin\Controllers\CheckRelationsController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\ColumnController::class => [
- 'class' => PhpMyAdmin\Controllers\ColumnController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\ConfigController::class => [
- 'class' => PhpMyAdmin\Controllers\ConfigController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$config' => '@config',
- ],
- ],
- PhpMyAdmin\Controllers\Database\CentralColumnsController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\CentralColumnsController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$centralColumns' => '@central_columns',
- ],
- ],
- PhpMyAdmin\Controllers\Database\DataDictionaryController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\DataDictionaryController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$relation' => '@relation',
- '$transformations' => '@transformations',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\DesignerController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\DesignerController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$databaseDesigner' => '@designer',
- '$designerCommon' => '@designer_common',
- ],
- ],
- PhpMyAdmin\Controllers\Database\EventsController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\EventsController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$events' => '@events',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\ExportController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\ExportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$export' => '@export',
- '$exportOptions' => '@export_options',
- ],
- ],
- PhpMyAdmin\Controllers\Database\ImportController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\ImportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\MultiTableQueryController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\MultiTableQueryController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\OperationsController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\OperationsController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$operations' => '@operations',
- '$checkUserPrivileges' => '@check_user_privileges',
- '$relation' => '@relation',
- '$relationCleanup' => '@relation_cleanup',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\PrivilegesController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\PrivilegesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$privileges' => '@server_privileges',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\QueryByExampleController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\QueryByExampleController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\RoutinesController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\RoutinesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$checkUserPrivileges' => '@check_user_privileges',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\SearchController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\SearchController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\SqlAutoCompleteController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\SqlAutoCompleteController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\SqlController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\SqlController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$sqlQueryForm' => '@sql_query_form',
- ],
- ],
- PhpMyAdmin\Controllers\Database\SqlFormatController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\SqlFormatController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- ],
- ],
- PhpMyAdmin\Controllers\Database\StructureController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\StructureController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$relation' => '@relation',
- '$replication' => '@replication',
- '$relationCleanup' => '@relation_cleanup',
- '$operations' => '@operations',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\TrackingController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\TrackingController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$tracking' => '@tracking',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Database\TriggersController::class => [
- 'class' => PhpMyAdmin\Controllers\Database\TriggersController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\DatabaseController::class => [
- 'class' => PhpMyAdmin\Controllers\DatabaseController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- ],
- ],
- PhpMyAdmin\Controllers\ErrorReportController::class => [
- 'class' => PhpMyAdmin\Controllers\ErrorReportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$errorReport' => '@error_report',
- '$errorHandler' => '@error_handler',
- ],
- ],
- PhpMyAdmin\Controllers\ExportController::class => [
- 'class' => PhpMyAdmin\Controllers\ExportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$export' => '@export',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\ExportTemplateController::class => [
- 'class' => PhpMyAdmin\Controllers\ExportTemplateController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$model' => '@export_template_model',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\GisDataEditorController::class => [
- 'class' => PhpMyAdmin\Controllers\GisDataEditorController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- ],
- ],
- PhpMyAdmin\Controllers\HomeController::class => [
- 'class' => PhpMyAdmin\Controllers\HomeController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$config' => '@config',
- '$themeManager' => '@theme_manager',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\ImportController::class => [
- 'class' => PhpMyAdmin\Controllers\ImportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$import' => '@import',
- '$sql' => '@sql',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\ImportStatusController::class => [
- 'class' => PhpMyAdmin\Controllers\ImportStatusController::class,
- 'arguments' => ['$template' => '@template'],
- ],
- PhpMyAdmin\Controllers\JavaScriptMessagesController::class => [
- 'class' => PhpMyAdmin\Controllers\JavaScriptMessagesController::class,
- ],
- PhpMyAdmin\Controllers\LicenseController::class => [
- 'class' => PhpMyAdmin\Controllers\LicenseController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- ],
- ],
- PhpMyAdmin\Controllers\LintController::class => [
- 'class' => PhpMyAdmin\Controllers\LintController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- ],
- ],
- PhpMyAdmin\Controllers\LogoutController::class => [
- 'class' => PhpMyAdmin\Controllers\LogoutController::class,
- ],
- PhpMyAdmin\Controllers\NavigationController::class => [
- 'class' => PhpMyAdmin\Controllers\NavigationController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$navigation' => '@navigation',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\NormalizationController::class => [
- 'class' => PhpMyAdmin\Controllers\NormalizationController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$normalization' => '@normalization',
- ],
- ],
- PhpMyAdmin\Controllers\PhpInfoController::class => [
- 'class' => PhpMyAdmin\Controllers\PhpInfoController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- ],
- ],
- PhpMyAdmin\Controllers\Preferences\ExportController::class => [
- 'class' => PhpMyAdmin\Controllers\Preferences\ExportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$userPreferences' => '@user_preferences',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\Preferences\FeaturesController::class => [
- 'class' => PhpMyAdmin\Controllers\Preferences\FeaturesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$userPreferences' => '@user_preferences',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\Preferences\ImportController::class => [
- 'class' => PhpMyAdmin\Controllers\Preferences\ImportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$userPreferences' => '@user_preferences',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\Preferences\MainPanelController::class => [
- 'class' => PhpMyAdmin\Controllers\Preferences\MainPanelController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$userPreferences' => '@user_preferences',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\Preferences\ManageController::class => [
- 'class' => PhpMyAdmin\Controllers\Preferences\ManageController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$userPreferences' => '@user_preferences',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\Preferences\NavigationController::class => [
- 'class' => PhpMyAdmin\Controllers\Preferences\NavigationController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$userPreferences' => '@user_preferences',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\Preferences\SqlController::class => [
- 'class' => PhpMyAdmin\Controllers\Preferences\SqlController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$userPreferences' => '@user_preferences',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\Preferences\TwoFactorController::class => [
- 'class' => PhpMyAdmin\Controllers\Preferences\TwoFactorController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\SchemaExportController::class => [
- 'class' => PhpMyAdmin\Controllers\SchemaExportController::class,
- 'arguments' => [
- '$export' => '@export',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\Server\BinlogController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\BinlogController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\CollationsController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\CollationsController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\DatabasesController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\DatabasesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$transformations' => '@transformations',
- '$relationCleanup' => '@relation_cleanup',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\EnginesController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\EnginesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\ExportController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\ExportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$export' => '@export_options',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\ImportController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\ImportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\PluginsController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\PluginsController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$plugins' => '@server_plugins',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\PrivilegesController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\PrivilegesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\ReplicationController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\ReplicationController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$replicationGui' => '@replication_gui',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\SqlController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\SqlController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$sqlQueryForm' => '@sql_query_form',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\UserGroupsController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\UserGroupsController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\Status\AdvisorController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\Status\AdvisorController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$data' => '@status_data',
- '$advisor' => '@advisor',
- ],
- ],
- PhpMyAdmin\Controllers\Server\Status\MonitorController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\Status\MonitorController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$data' => '@status_data',
- '$monitor' => '@status_monitor',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\Status\ProcessesController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\Status\ProcessesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$data' => '@status_data',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\Status\QueriesController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\Status\QueriesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$data' => '@status_data',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\Status\StatusController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\Status\StatusController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$data' => '@status_data',
- '$replicationGui' => '@replication_gui',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\Status\VariablesController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\Status\VariablesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$data' => '@status_data',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Server\VariablesController::class => [
- 'class' => PhpMyAdmin\Controllers\Server\VariablesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\SqlController::class => [
- 'class' => PhpMyAdmin\Controllers\SqlController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$sql' => '@sql',
- '$checkUserPrivileges' => '@check_user_privileges',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\AddFieldController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\AddFieldController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$transformations' => '@transformations',
- '$config' => '@config',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\ChangeController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\ChangeController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$insertEdit' => '@insert_edit',
- '$relation' => '@relation',
- ],
- ],
- PhpMyAdmin\Controllers\Table\ChartController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\ChartController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\CreateController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\CreateController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$transformations' => '@transformations',
- '$config' => '@config',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\DeleteController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\DeleteController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\ExportController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\ExportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$export' => '@export_options',
- ],
- ],
- PhpMyAdmin\Controllers\Table\FindReplaceController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\FindReplaceController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\GetFieldController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\GetFieldController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\GisVisualizationController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\GisVisualizationController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\ImportController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\ImportController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\IndexesController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\IndexesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\MaintenanceController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\MaintenanceController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$model' => '@table_maintenance',
- ],
- ],
- PhpMyAdmin\Controllers\Table\PartitionController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\PartitionController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$partition' => '@table_partition',
- ],
- ],
- PhpMyAdmin\Controllers\Table\OperationsController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\OperationsController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$operations' => '@operations',
- '$checkUserPrivileges' => '@check_user_privileges',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\PrivilegesController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\PrivilegesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$privileges' => '@server_privileges',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\RecentFavoriteController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\RecentFavoriteController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- ],
- ],
- PhpMyAdmin\Controllers\Table\RelationController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\RelationController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\ReplaceController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\ReplaceController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$insertEdit' => '@insert_edit',
- '$transformations' => '@transformations',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\SearchController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\SearchController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$search' => '@table_search',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\SqlController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\SqlController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$sqlQueryForm' => '@sql_query_form',
- ],
- ],
- PhpMyAdmin\Controllers\Table\StructureController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\StructureController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$relation' => '@relation',
- '$transformations' => '@transformations',
- '$createAddField' => '@create_add_field',
- '$relationCleanup' => '@relation_cleanup',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\TrackingController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\TrackingController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$tracking' => '@tracking',
- ],
- ],
- PhpMyAdmin\Controllers\Table\TriggersController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\TriggersController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\Table\ZoomSearchController::class => [
- 'class' => PhpMyAdmin\Controllers\Table\ZoomSearchController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$db' => '%db%',
- '$table' => '%table%',
- '$search' => '@table_search',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\TableController::class => [
- 'class' => PhpMyAdmin\Controllers\TableController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\ThemesController::class => [
- 'class' => PhpMyAdmin\Controllers\ThemesController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- ],
- ],
- PhpMyAdmin\Controllers\TransformationOverviewController::class => [
- 'class' => PhpMyAdmin\Controllers\TransformationOverviewController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$transformations' => '@transformations',
- ],
- ],
- PhpMyAdmin\Controllers\TransformationWrapperController::class => [
- 'class' => PhpMyAdmin\Controllers\TransformationWrapperController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$transformations' => '@transformations',
- '$relation' => '@relation',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\UserPasswordController::class => [
- 'class' => PhpMyAdmin\Controllers\UserPasswordController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$userPassword' => '@user_password',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\VersionCheckController::class => [
- 'class' => PhpMyAdmin\Controllers\VersionCheckController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- ],
- ],
- PhpMyAdmin\Controllers\ViewCreateController::class => [
- 'class' => PhpMyAdmin\Controllers\ViewCreateController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$dbi' => '@dbi',
- ],
- ],
- PhpMyAdmin\Controllers\ViewOperationsController::class => [
- 'class' => PhpMyAdmin\Controllers\ViewOperationsController::class,
- 'arguments' => [
- '$response' => '@response',
- '$template' => '@template',
- '$operations' => '@operations',
- '$dbi' => '@dbi',
- ],
- ],
- ],
- ];
|