ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilSCORMmanifestGUI Class Reference

GUI class for SCORM Manifest element. More...

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

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
ilSCORMManifest ilSCORMItem ilSCORMOrganization ilSCORMOrganizations ilSCORMResource ilSCORMResources $sc_object
 
ilGlobalTemplate $tpl
 
ilLanguage $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 28 of file class.ilSCORMManifestGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilSCORMmanifestGUI::__construct ( int  $a_id)

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

References ILIAS\GlobalScreen\Provider\__construct().

31  {
33  $this->sc_object = new ilSCORMManifest($a_id);
34  }
__construct(Container $dic, ilPlugin $plugin)
+ Here is the call graph for this function:

Member Function Documentation

◆ view()

ilSCORMmanifestGUI::view ( )

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

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

36  : void
37  {
38  $this->tpl->addBlockFile("CONTENT", "content", "tpl.scorm_obj.html", "components/ILIAS/ScormAicc");
39  $this->displayParameter(
40  $this->lng->txt("cont_import_id"),
41  $this->sc_object->getImportId()
42  );
43  $this->displayParameter(
44  $this->lng->txt("cont_version"),
45  $this->sc_object->getVersion()
46  );
47  $this->displayParameter(
48  $this->lng->txt("cont_xml_base"),
49  $this->sc_object->getXmlBase()
50  );
51  $this->tpl->setCurrentBlock("par_table");
52  $this->tpl->setVariable("TXT_OBJECT_TYPE", $this->lng->txt("cont_manifest"));
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: