ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilDidacticTemplateSettings.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
include_once
'./Services/DidacticTemplate/classes/class.ilDidacticTemplateSetting.php'
;
5
12
class
ilDidacticTemplateSettings
13
{
14
private
static
$instance
= null;
15
private
static
$instances
= null;
16
17
18
private
$templates
= array();
19
private
$obj_type
=
''
;
20
25
private
function
__construct
($a_obj_type =
''
)
26
{
27
$this->obj_type = $a_obj_type;
28
$this->
read
();
29
}
30
35
public
static
function
getInstance
()
36
{
37
if
(self::$instance) {
38
return
self::$instance;
39
}
40
return
self::$instance =
new
ilDidacticTemplateSettings
();
41
}
42
48
public
static
function
getInstanceByObjectType
($a_obj_type)
49
{
50
if
(self::$instances[$a_obj_type]) {
51
return
self::$instances[$a_obj_type];
52
}
53
return
self::$instances[$a_obj_type] =
new
ilDidacticTemplateSettings
($a_obj_type);
54
}
55
60
public
static
function
lookupAssignedObjectTypes
() : array
61
{
62
global
$DIC
;
63
64
$db = $DIC->database();
65
$query
=
'select distinct (obj_type) from didactic_tpl_sa '
.
66
'group by obj_type'
;
67
$res
= $db->query(
$query
);
68
$types = [];
69
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
70
$types[] = $row->obj_type;
71
}
72
return
$types;
73
}
74
79
public
function
getTemplates
()
80
{
81
return
(array)
$this->templates
;
82
}
83
88
public
function
getObjectType
()
89
{
90
return
$this->obj_type
;
91
}
92
96
public
function
readInactive
()
97
{
98
global
$DIC
;
99
100
$ilDB
= $DIC[
'ilDB'
];
101
102
$query
=
'SELECT dtpl.id FROM didactic_tpl_settings dtpl '
;
103
104
if
($this->
getObjectType
()) {
105
$query
.=
'JOIN didactic_tpl_sa tplsa ON dtpl.id = tplsa.id '
;
106
}
107
$query
.=
'WHERE enabled = '
.
$ilDB
->quote(0,
'integer'
) .
' '
;
108
109
if
($this->
getObjectType
()) {
110
$query
.=
'AND obj_type = '
.
$ilDB
->quote($this->
getObjectType
(),
'text'
);
111
}
112
113
$res
=
$ilDB
->query(
$query
);
114
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
115
$this->templates[$row->id] =
new
ilDidacticTemplateSetting
($row->id);
116
}
117
return
true
;
118
}
119
125
protected
function
read
()
126
{
127
global
$DIC
;
128
129
$ilDB
= $DIC[
'ilDB'
];
130
131
$query
=
'SELECT dtpl.id FROM didactic_tpl_settings dtpl '
;
132
133
if
($this->
getObjectType
()) {
134
$query
.=
'JOIN didactic_tpl_sa tplsa ON dtpl.id = tplsa.id '
;
135
}
136
$query
.=
'WHERE enabled = '
.
$ilDB
->quote(1,
'integer'
) .
' '
;
137
138
if
($this->
getObjectType
()) {
139
$query
.=
'AND obj_type = '
.
$ilDB
->quote($this->
getObjectType
(),
'text'
);
140
}
141
142
$res
=
$ilDB
->query(
$query
);
143
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
144
$this->templates[$row->id] =
new
ilDidacticTemplateSetting
($row->id);
145
}
146
return
true
;
147
}
148
}
ilDidacticTemplateSettings\$instances
static $instances
Definition:
class.ilDidacticTemplateSettings.php:15
ilDidacticTemplateSetting
Definition:
class.ilDidacticTemplateSetting.php:10
ilDidacticTemplateSettings\lookupAssignedObjectTypes
static lookupAssignedObjectTypes()
Definition:
class.ilDidacticTemplateSettings.php:60
ilDidacticTemplateSettings\$instance
static $instance
Definition:
class.ilDidacticTemplateSettings.php:14
ilDidacticTemplateSettings\getInstance
static getInstance()
Get singelton instance.
Definition:
class.ilDidacticTemplateSettings.php:35
ilDidacticTemplateSettings\getTemplates
getTemplates()
Get templates.
Definition:
class.ilDidacticTemplateSettings.php:79
ilDidacticTemplateSettings\getObjectType
getObjectType()
Get object type.
Definition:
class.ilDidacticTemplateSettings.php:88
ilDidacticTemplateSettings\$obj_type
$obj_type
Definition:
class.ilDidacticTemplateSettings.php:19
ilDidacticTemplateSettings\$templates
$templates
Definition:
class.ilDidacticTemplateSettings.php:18
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
ilDidacticTemplateSettings\read
read()
Read active didactic templates ilDB $ilDB.
Definition:
class.ilDidacticTemplateSettings.php:125
ilDidacticTemplateSettings
Definition:
class.ilDidacticTemplateSettings.php:12
$DIC
global $DIC
Definition:
goto.php:24
$query
$query
Definition:
proxy_ylocal.php:13
ilDidacticTemplateSettings\__construct
__construct($a_obj_type='')
Constructor.
Definition:
class.ilDidacticTemplateSettings.php:25
ilDidacticTemplateSettings\getInstanceByObjectType
static getInstanceByObjectType($a_obj_type)
Get instance by obj type.
Definition:
class.ilDidacticTemplateSettings.php:48
$ilDB
global $ilDB
Definition:
storeScorm2004.php:16
ilDBConstants\FETCHMODE_OBJECT
const FETCHMODE_OBJECT
Definition:
class.ilDBConstants.php:11
ilDidacticTemplateSettings\readInactive
readInactive()
Read disabled templates.
Definition:
class.ilDidacticTemplateSettings.php:96
Services
DidacticTemplate
classes
class.ilDidacticTemplateSettings.php
Generated on Sat Apr 5 2025 21:01:29 for ILIAS by
1.8.13 (using
Doxyfile
)