@@ -3,10 +3,10 @@ |
||
3 | 3 | namespace PHPPgAdmin\Help; |
4 | 4 | |
5 | 5 | /** |
6 | - * Help links for PostgreSQL 8.3 documentation |
|
7 | - * |
|
8 | - * $Id: PostgresDoc83.php,v 1.3 2008/03/17 21:35:48 ioguix Exp $ |
|
9 | - */ |
|
6 | + * Help links for PostgreSQL 8.3 documentation |
|
7 | + * |
|
8 | + * $Id: PostgresDoc83.php,v 1.3 2008/03/17 21:35:48 ioguix Exp $ |
|
9 | + */ |
|
10 | 10 | class PostgresDoc83 extends PostgresDoc82 |
11 | 11 | { |
12 | 12 | public function __construct($conf, $major_version) |
@@ -3,8 +3,8 @@ |
||
3 | 3 | namespace PHPPgAdmin\Help; |
4 | 4 | |
5 | 5 | /** |
6 | - * Help links for PostgreSQL 7.4 documentation |
|
7 | - */ |
|
6 | + * Help links for PostgreSQL 7.4 documentation |
|
7 | + */ |
|
8 | 8 | class PostgresDoc74 |
9 | 9 | { |
10 | 10 | use \PHPPgAdmin\HelperTrait; |
@@ -3,10 +3,10 @@ |
||
3 | 3 | namespace PHPPgAdmin\Help; |
4 | 4 | |
5 | 5 | /** |
6 | - * Help links for PostgreSQL 9.4 documentation |
|
7 | - * |
|
8 | - * $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $ |
|
9 | - */ |
|
6 | + * Help links for PostgreSQL 9.4 documentation |
|
7 | + * |
|
8 | + * $Id: PostgresDoc84.php,v 1.3 2008/11/18 21:35:48 ioguix Exp $ |
|
9 | + */ |
|
10 | 10 | class PostgresDoc94 extends PostgresDoc93 |
11 | 11 | { |
12 | 12 | public function __construct($conf, $major_version) |
@@ -3,10 +3,10 @@ |
||
3 | 3 | namespace PHPPgAdmin\Help; |
4 | 4 | |
5 | 5 | /** |
6 | - * Help links for PostgreSQL 8.2 documentation |
|
7 | - * |
|
8 | - * $Id: PostgresDoc82.php,v 1.3 2007/11/30 15:27:26 soranzo Exp $ |
|
9 | - */ |
|
6 | + * Help links for PostgreSQL 8.2 documentation |
|
7 | + * |
|
8 | + * $Id: PostgresDoc82.php,v 1.3 2007/11/30 15:27:26 soranzo Exp $ |
|
9 | + */ |
|
10 | 10 | class PostgresDoc82 extends PostgresDoc81 |
11 | 11 | { |
12 | 12 | public function __construct($conf, $major_version) |
@@ -113,7 +113,7 @@ |
||
113 | 113 | $lang = $this->lang; |
114 | 114 | $data = $misc->getDatabaseAccessor(); |
115 | 115 | |
116 | - $cnPre = function (&$rowdata) use ($data) { |
|
116 | + $cnPre = function(&$rowdata) use ($data) { |
|
117 | 117 | if (is_null($rowdata->fields['consrc'])) { |
118 | 118 | $atts = $data->getAttributeNames($_REQUEST['table'], explode(' ', $rowdata->fields['indkey'])); |
119 | 119 | $rowdata->fields['+definition'] = ($rowdata->fields['contype'] == 'u' ? 'UNIQUE (' : 'PRIMARY KEY (') . join(',', $atts) . ')'; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $lang = $this->lang; |
99 | 99 | $data = $misc->getDatabaseAccessor(); |
100 | 100 | |
101 | - $attPre = function (&$rowdata, $actions) use ($data) { |
|
101 | + $attPre = function(&$rowdata, $actions) use ($data) { |
|
102 | 102 | $rowdata->fields['+type'] = $data->formatType($rowdata->fields['type'], $rowdata->fields['atttypmod']); |
103 | 103 | $attname = $rowdata->fields['attname']; |
104 | 104 | $table = $_REQUEST['table']; |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | return $actions; |
112 | 112 | }; |
113 | 113 | |
114 | - $cstrRender = function ($s, $p) use ($misc, $data) { |
|
114 | + $cstrRender = function($s, $p) use ($misc, $data) { |
|
115 | 115 | $str = ''; |
116 | 116 | foreach ($p['keys'] as $k => $c) { |
117 | 117 | if (is_null($p['keys'][$k]['consrc'])) { |
@@ -3,10 +3,10 @@ |
||
3 | 3 | namespace PHPPgAdmin\Database; |
4 | 4 | |
5 | 5 | /** |
6 | - * PostgreSQL 8.1 support |
|
7 | - * |
|
8 | - * $Id: Postgres81.php,v 1.21 2008/01/19 13:46:15 ioguix Exp $ |
|
9 | - */ |
|
6 | + * PostgreSQL 8.1 support |
|
7 | + * |
|
8 | + * $Id: Postgres81.php,v 1.21 2008/01/19 13:46:15 ioguix Exp $ |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | class Postgres81 extends Postgres82 |
12 | 12 | { |
@@ -3,10 +3,10 @@ |
||
3 | 3 | namespace PHPPgAdmin\Database; |
4 | 4 | |
5 | 5 | /** |
6 | - * PostgreSQL 8.3 support |
|
7 | - * |
|
8 | - * $Id: Postgres82.php,v 1.10 2007/12/28 16:21:25 ioguix Exp $ |
|
9 | - */ |
|
6 | + * PostgreSQL 8.3 support |
|
7 | + * |
|
8 | + * $Id: Postgres82.php,v 1.10 2007/12/28 16:21:25 ioguix Exp $ |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | class Postgres83 extends Postgres84 |
12 | 12 | { |
@@ -3,10 +3,10 @@ |
||
3 | 3 | namespace PHPPgAdmin\Database; |
4 | 4 | |
5 | 5 | /** |
6 | - * PostgreSQL 8.4 support |
|
7 | - * |
|
8 | - * $Id: Postgres82.php,v 1.10 2007/12/28 16:21:25 ioguix Exp $ |
|
9 | - */ |
|
6 | + * PostgreSQL 8.4 support |
|
7 | + * |
|
8 | + * $Id: Postgres82.php,v 1.10 2007/12/28 16:21:25 ioguix Exp $ |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | class Postgres84 extends Postgres90 |
12 | 12 | { |