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

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

/**
 * PHPPgAdmin 6.1.2
 */

/**
 * @param Psr\Container\ContainerInterface $container
 */
function tablesFactory($container)
{
    $do_render = false;

    $controller = new \PHPPgAdmin\Controller\TablesController($container);

    if ($do_render) {
        $controller->render();
    }

    return $controller;
}