phpmyadmin/libraries/entry_points/table/find_replace.php
Maurício Meneghini Fauth d29e6d5728 Use the router for the table find and replace page
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2019-08-14 18:07:42 -03:00

45 lines
1.1 KiB
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Handles find and replace tab
*
* Displays find and replace form, allows previewing and do the replacing
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Controllers\Table\SearchController;
use Symfony\Component\DependencyInjection\Definition;
if (! defined('PHPMYADMIN')) {
exit;
}
global $containerBuilder;
/** @var string $url_query Overwritten in tbl_common.inc.php */
$url_query = null;
require_once ROOT_PATH . 'libraries/tbl_common.inc.php';
/* Define dependencies for the concerned controller */
$dependency_definitions = [
'searchType' => 'replace',
'url_query' => &$url_query,
];
/** @var Definition $definition */
$definition = $containerBuilder->getDefinition(SearchController::class);
array_map(
static function (string $parameterName, $value) use ($definition) {
$definition->replaceArgument($parameterName, $value);
},
array_keys($dependency_definitions),
$dependency_definitions
);
/** @var SearchController $controller */
$controller = $containerBuilder->get(SearchController::class);
$controller->indexAction();