ILIAS
trunk Revision v11.0_alpha-1723-g8e69f309bab
◀ 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
PageInfo.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Wiki\Page
;
22
26
class
PageInfo
27
{
28
protected
int
$old_nr
;
29
protected
int
$id
;
30
protected
string
$title
;
31
protected
string
$lang
=
"-"
;
32
protected
int
$last_change_user
;
33
protected
string
$last_change
;
34
protected
int
$create_user
;
35
protected
int
$view_cnt
;
36
protected
string
$created
;
37
38
public
function
__construct
(
39
int
$id,
40
string
$lang,
41
string
$title,
42
int
$last_change_user,
43
string
$last_change,
44
int
$create_user,
45
string
$created,
46
int
$view_cnt,
47
int
$old_nr
48
) {
49
$this->
id
=
$id
;
50
$this->title =
$title
;
51
$this->lang =
$lang
;
52
$this->last_change_user =
$last_change_user
;
53
$this->last_change =
$last_change
;
54
$this->create_user =
$create_user
;
55
$this->created =
$created
;
56
$this->view_cnt =
$view_cnt
;
57
$this->old_nr =
$old_nr
;
58
}
59
60
public
function
getId
():
int
61
{
62
return
$this->id
;
63
}
64
public
function
getTitle
(): string
65
{
66
return
$this->title
;
67
}
68
public
function
getLanguage
(): string
69
{
70
return
$this->lang
;
71
}
72
public
function
getLastChangedUser
():
int
73
{
74
return
$this->last_change_user
;
75
}
76
public
function
getLastChange
(): string
77
{
78
return
$this->last_change
;
79
}
80
public
function
getCreateUser
():
int
81
{
82
return
$this->create_user
;
83
}
84
public
function
getCreated
(): string
85
{
86
return
$this->created
;
87
}
88
public
function
getViewCnt
():
int
89
{
90
return
$this->view_cnt
;
91
}
92
93
public
function
getOldNr
():
int
94
{
95
return
$this->old_nr
;
96
}
97
}
ILIAS\Wiki\Page\PageInfo\getViewCnt
getViewCnt()
Definition:
PageInfo.php:88
ILIAS\Wiki\Page\PageInfo\getLastChangedUser
getLastChangedUser()
Definition:
PageInfo.php:72
ILIAS\Wiki\Page\PageInfo\$last_change_user
int $last_change_user
Definition:
PageInfo.php:32
ILIAS\Wiki\Page\PageInfo\$id
int $id
Definition:
PageInfo.php:29
ILIAS\Wiki\Page\PageInfo
Wiki page info.
Definition:
PageInfo.php:26
ILIAS\Wiki\Page\PageInfo\getId
getId()
Definition:
PageInfo.php:60
ILIAS\Wiki\Page\PageInfo\$lang
string $lang
Definition:
PageInfo.php:31
ILIAS\Wiki\Page\PageInfo\__construct
__construct(int $id, string $lang, string $title, int $last_change_user, string $last_change, int $create_user, string $created, int $view_cnt, int $old_nr)
Definition:
PageInfo.php:38
ILIAS\Wiki\Page\PageInfo\getCreateUser
getCreateUser()
Definition:
PageInfo.php:80
ILIAS\Wiki\Page\PageInfo\$last_change
string $last_change
Definition:
PageInfo.php:33
ILIAS\Wiki\Page\PageInfo\$old_nr
int $old_nr
Definition:
PageInfo.php:28
ILIAS\Wiki\Page\PageInfo\$title
string $title
Definition:
PageInfo.php:30
ILIAS\Wiki\Page\PageInfo\getCreated
getCreated()
Definition:
PageInfo.php:84
ILIAS\Wiki\Page
Definition:
Page.php:21
ILIAS\Wiki\Page\PageInfo\$view_cnt
int $view_cnt
Definition:
PageInfo.php:35
ILIAS\Wiki\Page\PageInfo\getLanguage
getLanguage()
Definition:
PageInfo.php:68
ILIAS\Wiki\Page\PageInfo\getOldNr
getOldNr()
Definition:
PageInfo.php:93
ILIAS\Wiki\Page\PageInfo\$create_user
int $create_user
Definition:
PageInfo.php:34
ILIAS\Wiki\Page\PageInfo\$created
string $created
Definition:
PageInfo.php:36
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Wiki\Page\PageInfo\getLastChange
getLastChange()
Definition:
PageInfo.php:76
ILIAS\Wiki\Page\PageInfo\getTitle
getTitle()
Definition:
PageInfo.php:64
components
ILIAS
Wiki
Page
PageInfo.php
Generated on Sun Apr 6 2025 23:04:45 for ILIAS by
1.8.13 (using
Doxyfile
)