Welcome to mirror list, hosted at ThFree Co, Russian Federation.

roles.php « views « tests - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ea360884e3a0876122c9f38fe7932ab7d84cdb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 * PHPPgAdmin v6.0.0-RC4
 */

// Include application functions

$do_render = false;
if (!defined('BASE_PATH')) {
    require_once '../../src/lib.inc.php';
    $do_render = true;
}
$controller = new \PHPPgAdmin\Controller\RolesController($container);
if ($do_render) {
    $controller->render();
}