You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
<?php |
|
|
|
declare(strict_types=1); |
|
|
|
namespace PhpMyAdmin\Controllers\Database\Structure; |
|
|
|
use PhpMyAdmin\Controllers\Database\AbstractController; |
|
|
|
use function __; |
|
|
|
final class ChangePrefixFormController extends AbstractController |
|
{ |
|
public function __invoke(): void |
|
{ |
|
global $db; |
|
|
|
$selected = $_POST['selected_tbl'] ?? []; |
|
$submitMult = $_POST['submit_mult'] ?? ''; |
|
|
|
if (empty($selected)) { |
|
$this->response->setRequestStatus(false); |
|
$this->response->addJSON('message', __('No table selected.')); |
|
|
|
return; |
|
} |
|
|
|
$route = '/database/structure/replace-prefix'; |
|
if ($submitMult === 'copy_tbl_change_prefix') { |
|
$route = '/database/structure/copy-table-with-prefix'; |
|
} |
|
|
|
$urlParams = ['db' => $db]; |
|
foreach ($selected as $selectedValue) { |
|
$urlParams['selected'][] = $selectedValue; |
|
} |
|
|
|
$this->response->disable(); |
|
$this->render('database/structure/change_prefix_form', [ |
|
'route' => $route, |
|
'url_params' => $urlParams, |
|
]); |
|
} |
|
}
|
|
|