ILIAS  release_8 Revision v8.24
class.ilSoapStructureReader.php
Go to the documentation of this file.
1<?php
2include_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;
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}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Abstract classs for soap structure objects.
Abstract classs for reading structure objects.
ilSoapStructureObject $structureObject