forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver_collations.php
More file actions
32 lines (26 loc) · 837 Bytes
/
server_collations.php
File metadata and controls
32 lines (26 loc) · 837 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
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Handles server charsets and collations page.
*
* @package PhpMyAdmin
*/
namespace PMA;
use PMA\libraries\controllers\server\ServerCollationsController;
use PMA\libraries\Response;
require_once 'libraries/common.inc.php';
$container = libraries\di\Container::getDefaultContainer();
$container->factory(
'PMA\libraries\controllers\server\ServerCollationsController'
);
$container->alias(
'ServerCollationsController',
'PMA\libraries\controllers\server\ServerCollationsController'
);
$container->set('PMA\libraries\Response', Response::getInstance());
$container->alias('response', 'PMA\libraries\Response');
/** @var ServerCollationsController $controller */
$controller = $container->get(
'ServerCollationsController', array()
);
$controller->indexAction();