ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
BstoreContainer.php
Go to the documentation of this file.
1 <?php
36 {
42  private $_BSECollection = array();
43 
49  public function addBSE($BSE)
50  {
51  $this->_BSECollection[] = $BSE;
52  $BSE->setParent($this);
53  }
54 
60  public function getBSECollection()
61  {
62  return $this->_BSECollection;
63  }
64 
65 }