ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilSCORMOrganizationGUI Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

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

Public Member Functions

 __construct (int $a_id)
 
 view ()
 
- Public Member Functions inherited from ilSCORMObjectGUI
 __construct (int $a_id=0)
 
getInstance (int $a_id)
 
 displayParameter (string $a_name, string $a_value)
 

Additional Inherited Members

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

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning 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 28 of file class.ilSCORMOrganizationGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilSCORMOrganizationGUI::__construct ( int  $a_id)

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

References ILIAS\GlobalScreen\Provider\__construct().

31  {
33  $this->sc_object = new ilSCORMOrganization($a_id);
34  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
+ Here is the call graph for this function:

Member Function Documentation

◆ view()

ilSCORMOrganizationGUI::view ( )

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

References ilSCORMObjectGUI\displayParameter(), and ILIAS\Repository\lng().

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

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