diff options
author | xzilla | 2007-06-07 02:20:20 +0000 |
---|---|---|
committer | xzilla | 2007-06-07 02:20:20 +0000 |
commit | 46b262e76b6ac2572ee0b07eb729900b5551b6cf (patch) | |
tree | ff490240650de062f8f7ea1b3a02742d1f1f335b | |
parent | 2ba9203653de3862903a373d43f930e0b965d26e (diff) |
add stubs for 8.3 support
-rw-r--r-- | classes/database/Postgres83.php | 33 | ||||
-rw-r--r-- | help/PostgresDoc83.php | 13 |
2 files changed, 46 insertions, 0 deletions
diff --git a/classes/database/Postgres83.php b/classes/database/Postgres83.php new file mode 100644 index 00000000..dc2861af --- /dev/null +++ b/classes/database/Postgres83.php @@ -0,0 +1,33 @@ +<?php + +/** + * PostgreSQL 8.3 support + * + * $Id: Postgres83.php,v 1.1 2007/06/07 02:20:20 xzilla Exp $ + */ + +include_once('./classes/database/Postgres82.php'); + +class Postgres83 extends Postgres82 { + + var $major_version = 8.3; + + // Last oid assigned to a system object + var $_lastSystemOID = 17231; // need to confirm this once we get to beta!!! + + /** + * Constructor + * @param $conn The database connection + */ + function Postgres83($conn) { + $this->Postgres82($conn); + } + + // Help functions + + function getHelpPages() { + include_once('./help/PostgresDoc83.php'); + return $this->help_page; + } + +?> diff --git a/help/PostgresDoc83.php b/help/PostgresDoc83.php new file mode 100644 index 00000000..b01f6b46 --- /dev/null +++ b/help/PostgresDoc83.php @@ -0,0 +1,13 @@ +<?php + +/** + * Help links for PostgreSQL 8.3 documentation + * + * $Id: PostgresDoc83.php,v 1.1 2007/06/07 02:20:20 xzilla Exp $ + */ + +include('./help/PostgresDoc82.php'); + +$this->help_base = sprintf($GLOBALS['conf']['help_base'], 'current'); + +?> |