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
ARRevision.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\ResourceStorage\Revision\Repository
;
4
5
use
ActiveRecord
;
6
12
class
ARRevision
extends
ActiveRecord
13
{
14
18
public
function
getConnectorContainerName
()
19
{
20
return
'il_resource_revision'
;
21
}
22
31
protected
$internal
;
38
protected
$identification
;
45
protected
$title
;
52
protected
$available
;
59
protected
$version_number
;
66
protected
$owner_id
;
67
71
public
function
getInternal
() : string
72
{
73
return
$this->internal
;
74
}
75
80
public
function
setInternal
(
string
$internal
) :
ARRevision
81
{
82
$this->
internal
=
$internal
;
83
84
return
$this;
85
}
86
90
public
function
getIdentification
() : string
91
{
92
return
$this->identification
;
93
}
94
99
public
function
setIdentification
(
string
$identification
) :
ARRevision
100
{
101
$this->identification =
$identification
;
102
103
return
$this;
104
}
105
109
public
function
isAvailable
() : bool
110
{
111
return
(
bool
)
$this->available
;
112
}
113
118
public
function
setAvailable
(
bool
$available
) :
ARRevision
119
{
120
$this->available =
$available
;
121
122
return
$this;
123
}
124
128
public
function
getVersionNumber
() : int
129
{
130
return
(
int
)
$this->version_number
;
131
}
132
137
public
function
setVersionNumber
(
int
$version_number
) :
ARRevision
138
{
139
$this->version_number =
$version_number
;
140
141
return
$this;
142
}
143
147
public
function
getOwnerId
() : int
148
{
149
return
(
int
)
$this->owner_id
;
150
}
151
156
public
function
setOwnerId
(
int
$owner_id
) :
ARRevision
157
{
158
$this->owner_id =
$owner_id
;
159
return
$this;
160
}
161
165
public
function
getTitle
() : string
166
{
167
return
$this->title ??
''
;
168
}
169
174
public
function
setTitle
(
string
$title
) :
ARRevision
175
{
176
$this->title =
$title
;
177
return
$this;
178
}
179
180
}
ILIAS\ResourceStorage\Revision\Repository\ARRevision\setTitle
setTitle(string $title)
Definition:
ARRevision.php:174
ILIAS\ResourceStorage\Revision\Repository\ARRevision\setVersionNumber
setVersionNumber(int $version_number)
Definition:
ARRevision.php:137
ILIAS\ResourceStorage\Revision\Repository\ARRevision\getInternal
getInternal()
Definition:
ARRevision.php:71
ILIAS\ResourceStorage\Revision\Repository\ARRevision\$title
$title
Definition:
ARRevision.php:45
ILIAS\ResourceStorage\Revision\Repository\ARRevision\getVersionNumber
getVersionNumber()
Definition:
ARRevision.php:128
ILIAS\ResourceStorage\Revision\Repository\ARRevision\isAvailable
isAvailable()
Definition:
ARRevision.php:109
ILIAS\ResourceStorage\Revision\Repository\ARRevision\getConnectorContainerName
getConnectorContainerName()
Definition:
ARRevision.php:18
ILIAS\ResourceStorage\Revision\Repository\ARRevision\getIdentification
getIdentification()
Definition:
ARRevision.php:90
ILIAS\ResourceStorage\Revision\Repository\ARRevision\$version_number
$version_number
Definition:
ARRevision.php:59
ILIAS\ResourceStorage\Revision\Repository\ARRevision\setIdentification
setIdentification(string $identification)
Definition:
ARRevision.php:99
ILIAS\ResourceStorage\Revision\Repository\ARRevision\setAvailable
setAvailable(bool $available)
Definition:
ARRevision.php:118
ILIAS\ResourceStorage\Revision\Repository\ARRevision
Class ARRevision.
Definition:
ARRevision.php:12
ILIAS\ResourceStorage\Revision\Repository\ARRevision\setOwnerId
setOwnerId(int $owner_id)
Definition:
ARRevision.php:156
ILIAS\ResourceStorage\Revision\Repository
Definition:
RevisionDBRepository.php:3
ILIAS\ResourceStorage\Revision\Repository\ARRevision\$internal
$internal
Definition:
ARRevision.php:31
ILIAS\ResourceStorage\Revision\Repository\ARRevision\getTitle
getTitle()
Definition:
ARRevision.php:165
ILIAS\ResourceStorage\Revision\Repository\ARRevision\$owner_id
$owner_id
Definition:
ARRevision.php:66
ActiveRecord
ILIAS\ResourceStorage\Revision\Repository\ARRevision\$available
$available
Definition:
ARRevision.php:52
ILIAS\ResourceStorage\Revision\Repository\ARRevision\setInternal
setInternal(string $internal)
Definition:
ARRevision.php:80
ILIAS\ResourceStorage\Revision\Repository\ARRevision\getOwnerId
getOwnerId()
Definition:
ARRevision.php:147
ILIAS\ResourceStorage\Revision\Repository\ARRevision\$identification
$identification
Definition:
ARRevision.php:38
src
ResourceStorage
Revision
Repository
ARRevision.php
Generated on Tue Apr 8 2025 21:02:12 for ILIAS by
1.8.13 (using
Doxyfile
)