mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-27 08:12:28 +00:00
39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
|
<?php
|
||
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||
|
/**
|
||
|
* handles creation of the chart
|
||
|
*
|
||
|
* @package PhpMyAdmin
|
||
|
*/
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use PhpMyAdmin\Controllers\Table\ChartController;
|
||
|
use Symfony\Component\DependencyInjection\Definition;
|
||
|
|
||
|
if (! defined('ROOT_PATH')) {
|
||
|
define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
|
||
|
}
|
||
|
|
||
|
require_once ROOT_PATH . 'libraries/common.inc.php';
|
||
|
|
||
|
/* Define dependencies for the concerned controller */
|
||
|
$dependency_definitions = [
|
||
|
'sql_query' => &$GLOBALS['sql_query'],
|
||
|
'url_query' => &$GLOBALS['url_query'],
|
||
|
'cfg' => &$GLOBALS['cfg'],
|
||
|
];
|
||
|
|
||
|
/** @var Definition $definition */
|
||
|
$definition = $containerBuilder->getDefinition(ChartController::class);
|
||
|
array_map(
|
||
|
static function (string $parameterName, $value) use ($definition) {
|
||
|
$definition->replaceArgument($parameterName, $value);
|
||
|
},
|
||
|
array_keys($dependency_definitions),
|
||
|
$dependency_definitions
|
||
|
);
|
||
|
|
||
|
/** @var ChartController $controller */
|
||
|
$controller = $containerBuilder->get(ChartController::class);
|
||
|
$controller->indexAction();
|