ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPCSectionModelProvider.php
Go to the documentation of this file.
1 <?php
2 
21 
23 {
24  public function getModels(
25  DomUtil $dom_util,
26  \ilPageObject $page
27  ): array {
28  $models = [];
29 
30  foreach ($dom_util->path($page->getDomDoc(), "//Section") as $node) {
31  $par = $node->parentNode;
32  $pc_id = $par->getAttribute("PCID");
33 
34  $model = new stdClass();
35  $model->protected = ($node->getAttribute("Protected") === "1");
36 
37  $models[$pc_id] = $model;
38  }
39 
40  return $models;
41  }
42 }
getDomDoc()
Get dom doc (DOMDocument)
path(\DOMDocument $doc, string $path)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
getModels(DomUtil $dom_util, \ilPageObject $page)