ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
class.ilSoapStructureReader.php
Go to the documentation of this file.
1 <?php
2 
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