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

PostgresDoc80.php « help « src - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b8462c5e5d4d4902e786d6fef389c58652ac12a (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
32
33
34
35
<?php

/**
 * PHPPgAdmin v6.0.0-RC8
 */

namespace PHPPgAdmin\Help;

/**
 * Help links for PostgreSQL 8.0 documentation.
 *
 * Release: PostgresDoc80.php,v 1.5 2005/02/16 10:27:44 jollytoad Exp $
 */
class PostgresDoc80 extends PostgresDoc74
{
    public function __construct($conf, $major_version)
    {
        parent::__construct($conf, $major_version);

        $this->help_page['pg.column.add'][0]  = 'ddl-alter.html#AEN2217';
        $this->help_page['pg.column.drop'][0] = 'ddl-alter.html#AEN2226';

        $this->help_page['pg.constraint.add']         = 'ddl-alter.html#AEN2217';
        $this->help_page['pg.constraint.check']       = 'ddl-constraints.html#AEN1978';
        $this->help_page['pg.constraint.drop']        = 'ddl-alter.html#AEN2226';
        $this->help_page['pg.constraint.primary_key'] = 'ddl-constraints.html#AEN2055';
        $this->help_page['pg.constraint.unique_key']  = 'ddl-constraints.html#AEN2033';

        $this->help_page['pg.domain'] = 'extend-type-system.html#AEN27940';

        $this->help_page['pg.function'][2] = 'sql-expressions.html#AEN1652';

        $this->help_page['pg.operator'][2] = 'sql-expressions.html#AEN1623';
    }
}