ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilPCTableModelProvider.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\COPage\Dom\DomUtil
;
20
use
ILIAS\COPage\Editor\Components\PageComponentModelProvider
;
21
22
class
ilPCTableModelProvider
implements
PageComponentModelProvider
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
}
ilPCTableModelProvider
Definition:
class.ilPCTableModelProvider.php:22
ILIAS\COPage\Editor\Components\PageComponentModelProvider
Definition:
PageComponentModelProvider.PageComponentEditor.php:23
ILIAS\COPage\Dom\DomUtil
DOM 2 util.
Definition:
class.DomUtil.php:25
ilPageObject\getContentObjectForPcId
getContentObjectForPcId(string $pcid)
Get content object for pc id.
Definition:
class.ilPageObject.php:727
ilPageObject\getDomDoc
getDomDoc()
Get dom doc (DOMDocument)
Definition:
class.ilPageObject.php:419
ilPCTableModelProvider\getModels
getModels(DomUtil $dom_util, \ilPageObject $page)
Definition:
class.ilPCTableModelProvider.php:24
PageComponentModelProvider
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\COPage\Dom\DomUtil\path
path(\DOMDocument $doc, string $path)
Definition:
class.DomUtil.php:80
ilPageObject
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
Definition:
class.ilPageObject.php:52
DomUtil
components
ILIAS
COPage
PC
Table
class.ilPCTableModelProvider.php
Generated on Thu Apr 3 2025 23:02:40 for ILIAS by
1.8.13 (using
Doxyfile
)