ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilAICCCourseGUI.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 require_once ("./Modules/ScormAicc/classes/AICC/class.ilAICCObjectGUI.php");
25 require_once ("./Modules/ScormAicc/classes/AICC/class.ilAICCCourse.php");
26 
35 {
36 
37  function ilAICCCourseGUI($a_id)
38  {
40  $this->sc_object =& new ilAICCCourse($a_id);
41  $files =& $this->sc_object->getFiles();
42  }
43 
44  function view()
45  {
46  $this->tpl = new ilTemplate("tpl.main.html", true, true);
47  $this->tpl->addBlockFile("CONTENT", "content", "tpl.aicc_obj.html", "Modules/ScormAicc");
48  $this->displayParameter($this->lng->txt("cont_import_id"),
49  $this->sc_object->getImportId());
50  $this->displayParameter($this->lng->txt("cont_resource_type"),
51  $this->sc_object->getResourceType());
52  $this->displayParameter($this->lng->txt("cont_scorm_type"),
53  $this->sc_object->getScormType());
54  $this->displayParameter($this->lng->txt("cont_href"),
55  $this->sc_object->getHref());
56  $this->displayParameter($this->lng->txt("cont_xml_base"),
57  $this->sc_object->getXmlBase());
58  $this->tpl->setCurrentBlock("partable");
59  $this->tpl->setVariable("TXT_OBJECT_TYPE", $this->lng->txt("cont_resource"));
60  $this->tpl->parseCurrentBlock();
61 
62  // files
63  $files =& $this->sc_object->getFiles();
64  for ($i=0; $i<count($files); $i++)
65  {
66  $this->displayParameter($this->lng->txt("cont_href"),
67  $files[$i]->getHRef());
68  }
69  $this->tpl->setCurrentBlock("partable");
70  $this->tpl->setVariable("TXT_OBJECT_TYPE", $this->lng->txt("cont_files"));
71  $this->tpl->parseCurrentBlock();
72 
73  // dependencies
74  $deps =& $this->sc_object->getDependencies();
75  for ($i=0; $i<count($deps); $i++)
76  {
77  $this->displayParameter($this->lng->txt("cont_id_ref"),
78  $deps[$i]->getIdentifierRef());
79  }
80  $this->tpl->setCurrentBlock("partable");
81  $this->tpl->setVariable("TXT_OBJECT_TYPE", $this->lng->txt("cont_dependencies"));
82  $this->tpl->parseCurrentBlock();
83  }
84 }
85 ?>