ILIAS  Release_3_10_x_branch Revision 61812
 All Data Structures Namespaces Files Functions Variables Groups Pages
pgt-main.php
Go to the documentation of this file.
1 <?php
2 
19 {
25  // ########################################################################
26  // CONSTRUCTOR
27  // ########################################################################
28 
36  function PGTStorage($cas_parent)
37  {
38  phpCAS::traceBegin();
39  if ( !$cas_parent->isProxy() ) {
40  phpCAS::error('defining PGT storage makes no sense when not using a CAS proxy');
41  }
42  phpCAS::traceEnd();
43  }
44 
45  // ########################################################################
46  // DEBUGGING
47  // ########################################################################
48 
55  function getStorageType()
56  {
57  phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
58  }
59 
66  function getStorageInfo()
67  {
68  phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
69  }
70 
71  // ########################################################################
72  // ERROR HANDLING
73  // ########################################################################
74 
83  var $_error_message=FALSE;
84 
94  function setErrorMessage($error_message)
95  {
96  $this->_error_message = $error_message;
97  }
98 
108  function getErrorMessage()
109  {
110  return $this->_error_message;
111  }
112 
113  // ########################################################################
114  // INITIALIZATION
115  // ########################################################################
116 
124  var $_initialized = FALSE;
125 
133  function isInitialized()
134  {
135  return $this->_initialized;
136  }
137 
143  function init()
144  {
145  $this->_initialized = TRUE;
146  }
147 
148  // ########################################################################
149  // PGT I/O
150  // ########################################################################
151 
161  function write($pgt,$pgt_iou)
162  {
163  phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
164  }
165 
175  function read($pgt_iou)
176  {
177  phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
178  }
179 
182 }
183 
184 // include specific PGT storage classes
185 include_once(dirname(__FILE__).'/pgt-file.php');
186 include_once(dirname(__FILE__).'/pgt-db.php');
187 
188 ?>