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

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

/**
 * PHPPgAdmin6
 */

namespace PHPPgAdmin\Help;

/**
 * Help links for PostgreSQL 9.2 documentation.
 *
 * Release: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $
 *
 * @SuppressWarnings(PHPMD)
 */
class PostgresDoc92 extends PostgresDoc91
{
    public function __construct($conf, $major_version)
    {
        parent::__construct($conf, $major_version);

        $this->help_topics['pg.rule.view'] = 'rules-views.html';
    }
}