phpmyadmin/libraries/entry_points/table/select.php
Maurício Meneghini Fauth 1a14b3e4d3 Remove vim modelines
These settings are no longer required as they are guaranteed through
other coding standard tools.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2019-09-02 09:43:21 -03:00

42 lines
1.1 KiB
PHP

<?php
/**
* Handles table search tab
*
* display table search form, create SQL query from form data
* and call Sql::executeQueryAndSendQueryResponse() to execute it
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Controllers\Table\SearchController;
use Symfony\Component\DependencyInjection\Definition;
if (! defined('PHPMYADMIN')) {
exit;
}
global $containerBuilder, $url_query;
require_once ROOT_PATH . 'libraries/tbl_common.inc.php';
/* Define dependencies for the concerned controller */
$dependency_definitions = [
'searchType' => 'normal',
'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();