|
24 | 24 | use PhpMyAdmin\Controllers\LogoutController; |
25 | 25 | use PhpMyAdmin\Controllers\NavigationController; |
26 | 26 | use PhpMyAdmin\Controllers\Normalization; |
| 27 | +use PhpMyAdmin\Controllers\Operations; |
27 | 28 | use PhpMyAdmin\Controllers\PhpInfoController; |
28 | 29 | use PhpMyAdmin\Controllers\Preferences; |
29 | 30 | use PhpMyAdmin\Controllers\RecentTablesListController; |
|
170 | 171 | 'class' => Database\MultiTableQueryController::class, |
171 | 172 | 'arguments' => ['$response' => '@response', '$template' => '@template', '$dbi' => '@dbi'], |
172 | 173 | ], |
173 | | - Database\Operations\CollationController::class => [ |
174 | | - 'class' => Database\Operations\CollationController::class, |
| 174 | + Operations\Database\CollationController::class => [ |
| 175 | + 'class' => Operations\Database\CollationController::class, |
175 | 176 | 'arguments' => [ |
176 | 177 | '$response' => '@response', |
177 | 178 | '$template' => '@template', |
|
180 | 181 | '$dbTableExists' => '@' . DbTableExists::class, |
181 | 182 | ], |
182 | 183 | ], |
183 | | - Database\OperationsController::class => [ |
184 | | - 'class' => Database\OperationsController::class, |
| 184 | + Operations\DatabaseController::class => [ |
| 185 | + 'class' => Operations\DatabaseController::class, |
185 | 186 | 'arguments' => [ |
186 | 187 | '$response' => '@response', |
187 | 188 | '$template' => '@template', |
|
1309 | 1310 | '$maintenance' => '@partitioning_maintenance', |
1310 | 1311 | ], |
1311 | 1312 | ], |
1312 | | - Table\OperationsController::class => [ |
1313 | | - 'class' => Table\OperationsController::class, |
| 1313 | + Operations\TableController::class => [ |
| 1314 | + 'class' => Operations\TableController::class, |
1314 | 1315 | 'arguments' => [ |
1315 | 1316 | '$response' => '@response', |
1316 | 1317 | '$template' => '@template', |
|
1603 | 1604 | '$dbTableExists' => '@' . DbTableExists::class, |
1604 | 1605 | ], |
1605 | 1606 | ], |
1606 | | - View\OperationsController::class => [ |
1607 | | - 'class' => View\OperationsController::class, |
| 1607 | + Operations\ViewController::class => [ |
| 1608 | + 'class' => Operations\ViewController::class, |
1608 | 1609 | 'arguments' => [ |
1609 | 1610 | '$response' => '@response', |
1610 | 1611 | '$template' => '@template', |
|
0 commit comments