ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ilSCORMOrganizationGUI Class Reference

GUI class for SCORM Organization element. More...

+ Inheritance diagram for ilSCORMOrganizationGUI:
+ Collaboration diagram for ilSCORMOrganizationGUI:

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 Organization 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.ilSCORMOrganizationGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilSCORMOrganizationGUI::__construct (   $a_id)

Definition at line 37 of file class.ilSCORMOrganizationGUI.php.

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

Member Function Documentation

◆ view()

ilSCORMOrganizationGUI::view ( )

Definition at line 43 of file class.ilSCORMOrganizationGUI.php.

References ilSCORMObjectGUI\displayParameter().

44  {
45  $this->tpl->addBlockFile("CONTENT", "content", "tpl.scorm_obj.html", "Modules/ScormAicc");
46  $this->tpl->setCurrentBlock("par_table");
47  $this->tpl->setVariable("TXT_OBJECT_TYPE", $this->lng->txt("cont_organization"));
48  $this->displayParameter($this->lng->txt("cont_import_id"),
49  $this->sc_object->getImportId());
50  $this->displayParameter($this->lng->txt("cont_structure"),
51  $this->sc_object->getStructure());
52  $this->displayParameter($this->lng->txt("cont_sc_title"),
53  $this->sc_object->getTitle());
54  $this->tpl->parseCurrentBlock();
55  }
displayParameter($a_name, $a_value)
+ Here is the call graph for this function:

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