ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilSCORMmanifestGUI Class Reference

GUI class for SCORM Manifest element. More...

+ Inheritance diagram for ilSCORMmanifestGUI:
+ Collaboration diagram for ilSCORMmanifestGUI:

Public Member Functions

 __construct ($a_id)
 
 view ()
 
- Public Member Functions inherited from ilSCORMObjectGUI
 __construct ($a_id=0)
 
getInstance ($a_id)
 get instance of specialized GUI class More...
 
 displayParameter ($a_name, $a_value)
 

Additional Inherited Members

- Data Fields inherited from ilSCORMObjectGUI
 $sc_object
 
 $tpl
 
 $lng
 

Detailed Description

GUI class for SCORM Manifest element.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 34 of file class.ilSCORMManifestGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilSCORMmanifestGUI::__construct (   $a_id)

Definition at line 36 of file class.ilSCORMManifestGUI.php.

37  {
38  parent::__construct();
39  $this->sc_object = new ilSCORMManifest($a_id);
40  }

Member Function Documentation

◆ view()

ilSCORMmanifestGUI::view ( )

Definition at line 42 of file class.ilSCORMManifestGUI.php.

References ilSCORMObjectGUI\displayParameter().

43  {
44  $this->tpl->addBlockFile("CONTENT", "content", "tpl.scorm_obj.html", "Modules/ScormAicc");
45  $this->displayParameter(
46  $this->lng->txt("cont_import_id"),
47  $this->sc_object->getImportId()
48  );
49  $this->displayParameter(
50  $this->lng->txt("cont_version"),
51  $this->sc_object->getVersion()
52  );
53  $this->displayParameter(
54  $this->lng->txt("cont_xml_base"),
55  $this->sc_object->getXmlBase()
56  );
57  $this->tpl->setCurrentBlock("par_table");
58  $this->tpl->setVariable("TXT_OBJECT_TYPE", $this->lng->txt("cont_manifest"));
59  $this->tpl->parseCurrentBlock();
60  }
displayParameter($a_name, $a_value)
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: