초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
This commit is contained in:
30
dbeditor/server_plugins.php
Normal file
30
dbeditor/server_plugins.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* Handles server plugins page.
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
use PhpMyAdmin\Controllers\Server\ServerPluginsController;
|
||||
use PhpMyAdmin\Di\Container;
|
||||
use PhpMyAdmin\Response;
|
||||
|
||||
require_once 'libraries/common.inc.php';
|
||||
|
||||
$container = Container::getDefaultContainer();
|
||||
$container->factory(
|
||||
'PhpMyAdmin\Controllers\Server\ServerPluginsController'
|
||||
);
|
||||
$container->alias(
|
||||
'ServerPluginsController',
|
||||
'PhpMyAdmin\Controllers\Server\ServerPluginsController'
|
||||
);
|
||||
$container->set('PhpMyAdmin\Response', Response::getInstance());
|
||||
$container->alias('response', 'PhpMyAdmin\Response');
|
||||
|
||||
/** @var ServerPluginsController $controller */
|
||||
$controller = $container->get(
|
||||
'ServerPluginsController', array()
|
||||
);
|
||||
$controller->indexAction();
|
||||
Reference in New Issue
Block a user