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

PostgresDoc93.php « help « src - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a9b062615b2e0b39fbd09af9da19d2201c2896d (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
25
26
27
28
29
30
31
<?php

/**
 * PHPPgAdmin 6.0.0
 */

namespace PHPPgAdmin\Help;

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

        $this->help_topics['pg.matview'] = 'sql-creatematerializedview.html';

        $this->help_topics['pg.matview.create'] = 'sql-creatematerializedview.html';
        $this->help_topics['pg.matview.drop'] = 'sql-dropmaterializedview.html';
        $this->help_topics['pg.matview.alter'] = 'sql-altermaterializedview.html';
        $this->help_topics['pg.matview.refresh'] = 'sql-refreshmaterializedview.html';

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