add stubs for 8.3 support
authorxzilla <xzilla>
Thu, 7 Jun 2007 02:20:20 +0000 (02:20 +0000)
committerxzilla <xzilla>
Thu, 7 Jun 2007 02:20:20 +0000 (02:20 +0000)
classes/database/Postgres83.php [new file with mode: 0644]
help/PostgresDoc83.php [new file with mode: 0644]

diff --git a/classes/database/Postgres83.php b/classes/database/Postgres83.php
new file mode 100644 (file)
index 0000000..dc2861a
--- /dev/null
@@ -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 (file)
index 0000000..b01f6b4
--- /dev/null
@@ -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');
+
+?>