ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSoapGLOStructureReader.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  public function _parseStructure(): void
27  {
28  /* @var $object ilObjGlossary */
30 
31  $terms = $this->object->getTermList();
32  foreach ($terms as $term) {
33  $termStructureObject = ilSoapStructureObjectFactory::getInstance(
34  (int) $term["id"],
35  "git",
36  $term["term"],
37  "",
38  $this->getObject()->getRefId()
39  );
40 
41  $this->structureObject->addStructureObject($termStructureObject);
42 
43  $defStructureObject = ilSoapStructureObjectFactory::getInstance(
44  (int) $term["id"],
45  "term",
46  $term["short_text"],
47  "",
48  $this->getObject()->getRefId()
49  );
50 
51  $termStructureObject->addStructureObject($defStructureObject);
52  }
53  }
54 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getInstance(int $objId, string $type, string $title, string $description, int $parentRefId)