ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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.ilTestPage.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
27
class
ilTestPage
extends
ilPageObject
28
{
29
public
function
getParentType
(): string
30
{
31
return
'tst'
;
32
}
33
34
public
function
createPageWithNextId
():
int
35
{
36
$query = $this->db->query(
'SELECT max(page_id) as last_id FROM page_object WHERE parent_type="'
37
. $this->
getParentType
() .
'"'
);
38
try
{
39
$assoc = $this->db->fetchAssoc($query);
40
$this->
setId
(
41
$assoc[
'last_id'
] + 1
42
);
43
$this->
createFromXML
();
44
}
catch
(
ilDatabaseException
$e
) {
45
$this->
createPageWithNextId
();
46
}
47
48
return
$this->
getId
();
49
}
50
}
Vendor\Package\$e
$e
Definition:
example_cleaned.php:49
ilTestPage\createPageWithNextId
createPageWithNextId()
Definition:
class.ilTestPage.php:34
ilDatabaseException
ilPageObject\getId
getId()
Definition:
class.ilPageObject.php:429
ilPageObject
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
Definition:
class.ilPageObject.php:52
ilPageObject\createFromXML
createFromXML()
Create new page object with current xml content.
Definition:
class.ilPageObject.php:1280
ilTestPage
ilTestEditPageGUI: ilPageEditorGUI, ilEditClipboardGUI, ilMDEditorGUI ilTestEditPageGUI: ilPublicUse...
Definition:
class.ilTestPage.php:27
ilTestPage\getParentType
getParentType()
Definition:
class.ilTestPage.php:29
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilPageObject\setId
setId(int $a_id)
Definition:
class.ilPageObject.php:424
components
ILIAS
Test
classes
PageEditor
class.ilTestPage.php
Generated on Wed Apr 2 2025 23:03:47 for ILIAS by
1.8.13 (using
Doxyfile
)