ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPCTableModelProvider.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(), "//Table") as $node) {
31  if ($node->getAttribute("DataTable") !== "y") {
32  continue;
33  }
34 
35  $par = $node->parentNode;
36  $pc_id = $par->getAttribute("PCID");
37 
38  $co = $page->getContentObjectForPcId($pc_id);
39  if ($co !== null) {
40  $co_model = $co->getModel();
41  if ($co_model !== null) {
42  $models[$pc_id] = $co_model;
43  }
44  }
45  }
46 
47  return $models;
48  }
49 }
getContentObjectForPcId(string $pcid)
Get content object for pc id.
getDomDoc()
Get dom doc (DOMDocument)
getModels(DomUtil $dom_util, \ilPageObject $page)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
path(\DOMDocument $doc, string $path)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)