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
AbstractInfoResolver.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\ResourceStorage\Resource\InfoResolver
;
22
28
abstract
class
AbstractInfoResolver
implements
InfoResolver
29
{
30
protected
int
$next_version_number
;
31
protected
int
$revision_owner_id
;
32
protected
string
$revision_title
;
33
37
public
function
__construct
(
int
$next_version_number,
int
$revision_owner_id,
string
$revision_title)
38
{
39
$this->next_version_number =
$next_version_number
;
40
$this->revision_owner_id =
$revision_owner_id
;
41
$this->revision_title =
$revision_title
;
42
}
43
44
public
function
getNextVersionNumber
():
int
45
{
46
return
$this->next_version_number
;
47
}
48
49
public
function
getOwnerId
():
int
50
{
51
return
$this->revision_owner_id
;
52
}
53
54
public
function
getRevisionTitle
(): string
55
{
56
return
$this->revision_title
;
57
}
58
}
ILIAS\ResourceStorage\Resource\InfoResolver\InfoResolver
Interface InfoResolver.
Definition:
InfoResolver.php:30
ILIAS\ResourceStorage\Resource\InfoResolver\AbstractInfoResolver\$next_version_number
int $next_version_number
Definition:
AbstractInfoResolver.php:30
ILIAS\ResourceStorage\Resource\InfoResolver\AbstractInfoResolver\$revision_owner_id
int $revision_owner_id
Definition:
AbstractInfoResolver.php:31
ILIAS\ResourceStorage\Resource\InfoResolver\AbstractInfoResolver\getRevisionTitle
getRevisionTitle()
Definition:
AbstractInfoResolver.php:54
ILIAS\ResourceStorage\Resource\InfoResolver\AbstractInfoResolver\__construct
__construct(int $next_version_number, int $revision_owner_id, string $revision_title)
AbstractInfoResolver constructor.
Definition:
AbstractInfoResolver.php:37
ILIAS\ResourceStorage\Resource\InfoResolver\AbstractInfoResolver\getNextVersionNumber
getNextVersionNumber()
Definition:
AbstractInfoResolver.php:44
ILIAS\ResourceStorage\Resource\InfoResolver\AbstractInfoResolver\$revision_title
string $revision_title
Definition:
AbstractInfoResolver.php:32
ILIAS\ResourceStorage\Resource\InfoResolver
Definition:
AbstractInfoResolver.php:21
ILIAS\ResourceStorage\Resource\InfoResolver\AbstractInfoResolver\getOwnerId
getOwnerId()
Definition:
AbstractInfoResolver.php:49
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\ResourceStorage\Resource\InfoResolver\AbstractInfoResolver
Definition:
AbstractInfoResolver.php:28
src
ResourceStorage
Resource
InfoResolver
AbstractInfoResolver.php
Generated on Fri Apr 4 2025 22:03:13 for ILIAS by
1.8.13 (using
Doxyfile
)