ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
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
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilDclDetailedViewDefinition.php
Go to the documentation of this file.
1
<?php
2
19
class
ilDclDetailedViewDefinition
extends
ilPageObject
20
{
21
public
const
PARENT_TYPE
=
'dclf'
;
22
protected
int
$table_id
;
23
27
public
function
getParentType
(): string
28
{
29
return
self::PARENT_TYPE;
30
}
31
35
public
function
getAvailablePlaceholders
(): array
36
{
37
$all = array();
38
39
$tableview =
new
ilDclTableView
($this->
getId
());
40
$table_id = $tableview->getTableId();
41
$objTable =
ilDclCache::getTableCache
($table_id);
42
$fields = $objTable->getRecordFields();
43
$standardFields = $objTable->getStandardFields();
44
45
foreach
($fields as $field) {
46
$all[] =
"["
. $field->getTitle() .
"]"
;
47
48
if
($field->getDatatypeId() ==
ilDclDatatype::INPUTFORMAT_REFERENCE
) {
49
$all[] =
'[dclrefln field="'
. $field->getTitle() .
'"][/dclrefln]'
;
50
}
51
}
52
53
foreach
($standardFields as $field) {
54
$all[] =
"["
. $field->getId() .
"]"
;
55
}
56
57
return
$all;
58
}
59
60
public
static
function
exists
(
int
$id
): bool
61
{
62
return
parent::_exists(self::PARENT_TYPE, $id);
63
}
64
65
public
static
function
isActive
(
int
$id
): bool
66
{
67
if
(!parent::_exists(self::PARENT_TYPE, $id)) {
68
return
false
;
69
}
70
return
parent::_lookupActive($id, self::PARENT_TYPE);
71
}
72
}
ilDclDetailedViewDefinition\$table_id
int $table_id
Definition:
class.ilDclDetailedViewDefinition.php:22
ilDclDetailedViewDefinition\getParentType
getParentType()
Get parent type.
Definition:
class.ilDclDetailedViewDefinition.php:27
ilPageObject\$id
int $id
Definition:
class.ilPageObject.php:66
ilPageObject\getId
getId()
Definition:
class.ilPageObject.php:429
ilDclCache\getTableCache
static getTableCache(int $table_id=null)
Definition:
class.ilDclCache.php:129
ilDclDetailedViewDefinition\exists
static exists(int $id)
Definition:
class.ilDclDetailedViewDefinition.php:60
ilPageObject
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
Definition:
class.ilPageObject.php:50
ilDclDetailedViewDefinition\getAvailablePlaceholders
getAvailablePlaceholders()
Get all placeholders for table id.
Definition:
class.ilDclDetailedViewDefinition.php:35
ilDclTableView
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilDclTableView.php:19
ilDclDatatype\INPUTFORMAT_REFERENCE
const INPUTFORMAT_REFERENCE
Definition:
class.ilDclDatatype.php:24
ilDclDetailedViewDefinition\isActive
static isActive(int $id)
Definition:
class.ilDclDetailedViewDefinition.php:65
ilDclDetailedViewDefinition\PARENT_TYPE
const PARENT_TYPE
Definition:
class.ilDclDetailedViewDefinition.php:21
ilDclDetailedViewDefinition
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilDclDetailedViewDefinition.php:19
Modules
DataCollection
classes
DetailedView
class.ilDclDetailedViewDefinition.php
Generated on Fri Apr 4 2025 22:01:44 for ILIAS by
1.8.13 (using
Doxyfile
)