ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 36 of file class.ilSCORMOrganizationGUI.php.

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

Member Function Documentation

◆ view()

ilSCORMOrganizationGUI::view ( )

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

References ilSCORMObjectGUI\displayParameter().

43  {
44  $this->tpl->addBlockFile("CONTENT", "content", "tpl.scorm_obj.html", "Modules/ScormAicc");
45  $this->tpl->setCurrentBlock("par_table");
46  $this->tpl->setVariable("TXT_OBJECT_TYPE", $this->lng->txt("cont_organization"));
47  $this->displayParameter(
48  $this->lng->txt("cont_import_id"),
49  $this->sc_object->getImportId()
50  );
51  $this->displayParameter(
52  $this->lng->txt("cont_structure"),
53  $this->sc_object->getStructure()
54  );
55  $this->displayParameter(
56  $this->lng->txt("cont_sc_title"),
57  $this->sc_object->getTitle()
58  );
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: