CWIS Developer Documentation
SPTDatabase.php
Go to the documentation of this file.
1 <?PHP
2 
3 #
4 # FILE: SPT--SPTDatabase.php
5 #
6 # METHODS PROVIDED:
7 # SPTDatabase()
8 # - constructor
9 #
10 # AUTHOR: Edward Almasy
11 #
12 # Part of the Scout Portal Toolkit
13 # Copyright 2002-2003 Internet Scout Project
14 # http://scout.wisc.edu
15 #
16 
17 class SPTDatabase extends Database {
18 
19  # ---- PUBLIC INTERFACE --------------------------------------------------
20 
21  # object constructor
22  function SPTDatabase()
23  {
24  global $SPT_DBUserName, $SPT_DBPassword, $SPT_DBName, $SPT_DBHost;
25 
26  $this->Database($SPT_DBUserName, $SPT_DBPassword, $SPT_DBName, $SPT_DBHost);
27  }
28 
29 
30  # ---- PRIVATE INTERFACE -------------------------------------------------
31 
32 }
33 
34 
35 ?>