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

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

/**
 * PHPPgAdmin 6.1.3
 */

// Include application functions

function triggersFactory($container)
{
    $do_render = false;

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

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

    return $controller;
}