Viewing File: /usr/local/cpanel/3rdparty/share/phpPgAdmin/classes/database/Postgres94.php
<?php
/**
* PostgreSQL 9.4 support
*
*/
include_once('./classes/database/Postgres95.php');
class Postgres94 extends Postgres95 {
var $major_version = 9.4;
/**
* Constructor
* @param $conn The database connection
*/
function __construct($conn) {
parent::__construct($conn);
}
// Help functions
function getHelpPages() {
include_once('./help/PostgresDoc94.php');
return $this->help_page;
}
}
?>
Back to Directory
File Manager