ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSoapStructureReader.php
Go to the documentation of this file.
1 <?php
2 include_once './webservice/soap/classes/class.ilSoapStructureObject.php';
3 
9 {
10  protected ilObject $object;
12 
13  public function __construct(ilObject $object)
14  {
15  $this->object = $object;
16  $this->structureObject = ilSoapStructureObjectFactory::getInstanceForObject($object);
17  }
18 
20  {
21  $this->_parseStructure();
23  }
24 
25  public function _parseStructure() : void
26  {
27  }
28 
29  public function isValid() : bool
30  {
31  return $this->structureObject instanceof \ilSoapStructureObject;
32  }
33 
34  public function getObject() : ilObject
35  {
36  return $this->object;
37  }
38 }
Abstract classs for soap structure objects.
Abstract classs for reading structure objects.
ilSoapStructureObject $structureObject