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

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

/**
 * PHPPgAdmin 6.0.0
 */

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

    return new \PHPPgAdmin\Controller\DataexportController($container);
}