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

PostgresDoc81.php « help « src - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5fe8916e46a6b0518a6b71297713b263e057f1c (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
<?php

/**
 * PHPPgAdmin 6.0.0
 */

namespace PHPPgAdmin\Help;

/**
 * Help links for PostgreSQL 8.1 documentation.
 *
 * Release: PostgresDoc81.php,v 1.3 2006/12/28 04:26:55 xzilla Exp $
 */
class PostgresDoc81 extends PostgresDoc80
{
    public function __construct($conf, $major_version)
    {
        parent::__construct($conf, $major_version);

        $this->help_page['pg.role'] = 'user-manag.html';
        $this->help_page['pg.role.create'] = ['sql-createrole.html', 'user-manag.html#DATABASE-ROLES'];
        $this->help_page['pg.role.alter'] = ['sql-alterrole.html', 'role-attributes.html'];
        $this->help_page['pg.role.drop'] = ['sql-droprole.html', 'user-manag.html#DATABASE-ROLES'];
    }
}