ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
DggContainer.php
Go to the documentation of this file.
1 <?php
36 {
42  private $_spIdMax;
43 
49  private $_cDgSaved;
50 
56  private $_cSpSaved;
57 
64 
70  private $_OPT = array();
71 
77  public function getSpIdMax()
78  {
79  return $this->_spIdMax;
80  }
81 
87  public function setSpIdMax($value)
88  {
89  $this->_spIdMax = $value;
90  }
91 
97  public function getCDgSaved()
98  {
99  return $this->_cDgSaved;
100  }
101 
107  public function setCDgSaved($value)
108  {
109  $this->_cDgSaved = $value;
110  }
111 
117  public function getCSpSaved()
118  {
119  return $this->_cSpSaved;
120  }
121 
127  public function setCSpSaved($value)
128  {
129  $this->_cSpSaved = $value;
130  }
131 
137  public function getBstoreContainer()
138  {
140  }
141 
147  public function setBstoreContainer($bstoreContainer)
148  {
149  $this->_bstoreContainer = $bstoreContainer;
150  }
151 
158  public function setOPT($property, $value)
159  {
160  $this->_OPT[$property] = $value;
161  }
162 
169  public function getOPT($property)
170  {
171  if (isset($this->_OPT[$property])) {
172  return $this->_OPT[$property];
173  }
174  return null;
175  }
176 
177 }