00001 <?php 00002 /* 00003 +-----------------------------------------------------------------------------+ 00004 | ILIAS open source | 00005 +-----------------------------------------------------------------------------+ 00006 | Copyright (c) 1998-2001 ILIAS open source, University of Cologne | 00007 | | 00008 | This program is free software; you can redistribute it and/or | 00009 | modify it under the terms of the GNU General Public License | 00010 | as published by the Free Software Foundation; either version 2 | 00011 | of the License, or (at your option) any later version. | 00012 | | 00013 | This program is distributed in the hope that it will be useful, | 00014 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 00015 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 00016 | GNU General Public License for more details. | 00017 | | 00018 | You should have received a copy of the GNU General Public License | 00019 | along with this program; if not, write to the Free Software | 00020 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 00021 +-----------------------------------------------------------------------------+ 00022 */ 00023 require_once("content/classes/class.ilObjContentObjectGUI.php"); 00024 00036 class ilObjLearningModuleGUI extends ilObjContentObjectGUI 00037 { 00038 var $object; 00043 function ilObjLearningModuleGUI($a_data,$a_id = 0,$a_call_by_reference = true, $a_prepare_output = true) 00044 { 00045 $this->type = "lm"; 00046 00047 parent::ilObjContentObjectGUI($a_data, $a_id, $a_call_by_reference, $a_prepare_output); 00048 00049 # BETTER DO IT HERE THAN IN PARENT CLASS ( PROBLEMS FOR import, create) 00050 $this->assignObject(); 00051 00052 // SAME REASON 00053 if($a_id != 0) 00054 { 00055 $this->lm_tree =& $this->object->getLMTree(); 00056 } 00057 /* 00058 global $ilias, $tpl, $lng, $objDefinition; 00059 00060 $this->ilias =& $ilias; 00061 $this->tpl =& $tpl; 00062 $this->lng =& $lng; 00063 $this->objDefinition =& $objDefinition; 00064 $this->lm_tree =& $a_tree; 00065 */ 00066 00067 //$this->read(); todo 00068 } 00069 00070 function assignObject() 00071 { 00072 include_once("content/classes/class.ilObjLearningModule.php"); 00073 00074 $this->link_params = "ref_id=".$this->ref_id; 00075 $this->object =& new ilObjLearningModule($this->id, true); 00076 } 00077 00078 /* 00079 function setLearningModuleObject(&$a_lm_obj) 00080 { 00081 $this->lm_obj =& $a_lm_obj; 00082 //$this->obj =& $this->lm_obj; 00083 }*/ 00084 00085 // MOVED ALL *style METHODS TO base class 00086 00087 function view() 00088 { 00089 $this->properties(); 00090 } 00091 00092 } 00093 00094 ?>