forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver_plugins.php
More file actions
34 lines (27 loc) · 827 Bytes
/
server_plugins.php
File metadata and controls
34 lines (27 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Handles server plugins page.
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Controllers\Server\PluginsController;
use PhpMyAdmin\Di\Container;
use PhpMyAdmin\Response;
if (! defined('ROOT_PATH')) {
define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
}
require_once ROOT_PATH . 'libraries/common.inc.php';
$container = Container::getDefaultContainer();
$container->factory(PluginsController::class);
$container->set(Response::class, Response::getInstance());
$container->alias('response', Response::class);
/** @var PluginsController $controller */
$controller = $container->get(
PluginsController::class,
[]
);
/** @var Response $response */
$response = $container->get(Response::class);
$response->addHTML($controller->index());