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.ilDclCreateViewDefinition.php
Go to the documentation of this file.
1
<?php
2
19
class
ilDclCreateViewDefinition
extends
ilPageObject
20
{
21
public
const
PARENT_TYPE
=
'dclf'
;
22
protected
bool
$active
=
false
;
23
protected
int
$table_id
;
24
28
public
function
getParentType
(): string
29
{
30
return
self::PARENT_TYPE;
31
}
32
37
public
function
getAvailablePlaceholders
(): array
38
{
39
$all = array();
40
41
$tableview =
new
ilDclTableView
($this->
getId
());
42
$table_id = $tableview->getTableId();
43
$objTable =
ilDclCache::getTableCache
($table_id);
44
$fields = $objTable->getRecordFields();
45
$standardFields = $objTable->getStandardFields();
46
47
foreach
($fields as $field) {
48
$all[] =
"["
. $field->getTitle() .
"]"
;
49
50
if
($field->getDatatypeId() ==
ilDclDatatype::INPUTFORMAT_REFERENCE
) {
51
$all[] =
'[dclrefln field="'
. $field->getTitle() .
'"][/dclrefln]'
;
52
}
53
}
54
55
foreach
($standardFields as $field) {
56
$all[] =
"["
. $field->getId() .
"]"
;
57
}
58
59
return
$all;
60
}
61
62
public
static
function
exists
(
int
$id
): bool
63
{
64
return
parent::_exists(self::PARENT_TYPE, $id);
65
}
66
67
public
static
function
isActive
(
int
$id
): bool
68
{
69
return
parent::_lookupActive($id, self::PARENT_TYPE);
70
}
71
}
ilPageObject\$id
int $id
Definition:
class.ilPageObject.php:66
ilDclCreateViewDefinition\getAvailablePlaceholders
getAvailablePlaceholders()
Get all placeholders for table id.
Definition:
class.ilDclCreateViewDefinition.php:37
ilDclCreateViewDefinition\getParentType
getParentType()
Get parent type.
Definition:
class.ilDclCreateViewDefinition.php:28
ilDclCreateViewDefinition\isActive
static isActive(int $id)
Definition:
class.ilDclCreateViewDefinition.php:67
ilPageObject\getId
getId()
Definition:
class.ilPageObject.php:429
ilDclCache\getTableCache
static getTableCache(int $table_id=null)
Definition:
class.ilDclCache.php:129
ilPageObject
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
Definition:
class.ilPageObject.php:50
ilDclTableView
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilDclTableView.php:19
ilDclCreateViewDefinition
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilDclCreateViewDefinition.php:19
ilDclDatatype\INPUTFORMAT_REFERENCE
const INPUTFORMAT_REFERENCE
Definition:
class.ilDclDatatype.php:24
ilDclCreateViewDefinition\$table_id
int $table_id
Definition:
class.ilDclCreateViewDefinition.php:23
ilDclCreateViewDefinition\exists
static exists(int $id)
Definition:
class.ilDclCreateViewDefinition.php:62
ilDclCreateViewDefinition\$active
bool $active
Definition:
class.ilDclCreateViewDefinition.php:22
ilDclCreateViewDefinition\PARENT_TYPE
const PARENT_TYPE
Definition:
class.ilDclCreateViewDefinition.php:21
Modules
DataCollection
classes
CreateView
class.ilDclCreateViewDefinition.php
Generated on Fri Apr 4 2025 22:01:44 for ILIAS by
1.8.13 (using
Doxyfile
)