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
AbstractResourceStakeholder.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\ResourceStorage\Stakeholder
;
22
23
use
ILIAS\ResourceStorage\Identification\ResourceIdentification
;
24
29
abstract
class
AbstractResourceStakeholder
implements
ResourceStakeholder
30
{
31
private
string
$provider_name_cache
=
''
;
32
36
public
function
getFullyQualifiedClassName
(): string
37
{
38
return
static::class;
39
}
40
44
public
function
isResourceInUse
(
ResourceIdentification
$identification): bool
45
{
46
return
false
;
47
}
48
52
public
function
resourceHasBeenDeleted
(
ResourceIdentification
$identification): bool
53
{
54
return
true
;
55
}
56
60
public
function
getOwnerOfResource
(
ResourceIdentification
$identification):
int
61
{
62
return
6;
63
}
64
68
public
function
getConsumerNameForPresentation
(): string
69
{
70
if
($this->provider_name_cache !==
''
&& is_string($this->provider_name_cache)) {
71
return
$this->provider_name_cache
;
72
}
73
$reflector = new \ReflectionClass($this);
74
75
$re =
"/.*[\\\|\\/](?P<provider>(Services|Modules)[\\\|\\/].*)[\\\|\\/]classes/m"
;
76
77
preg_match($re, str_replace(
"\\"
,
"/"
, $reflector->getFileName()), $matches);
78
79
$this->provider_name_cache = isset($matches[1]) ? is_string(
80
$matches[1]
81
) ? $matches[1] : self::class : self::class;
82
83
return
$this->provider_name_cache
;
84
}
85
}
ILIAS\ResourceStorage\Stakeholder\AbstractResourceStakeholder\isResourceInUse
isResourceInUse(ResourceIdentification $identification)
Definition:
AbstractResourceStakeholder.php:44
ILIAS\ResourceStorage\Stakeholder
ResourceIdentification
ILIAS\ResourceStorage\Stakeholder\AbstractResourceStakeholder\getFullyQualifiedClassName
getFullyQualifiedClassName()
Definition:
AbstractResourceStakeholder.php:36
ILIAS\ResourceStorage\Identification\ResourceIdentification
Class ResourceIdentification.
Definition:
ResourceIdentification.php:30
ILIAS\ResourceStorage\Stakeholder\AbstractResourceStakeholder
Class AbstractResourceStakeholder.
Definition:
AbstractResourceStakeholder.php:29
ILIAS\ResourceStorage\Stakeholder\AbstractResourceStakeholder\$provider_name_cache
string $provider_name_cache
Definition:
AbstractResourceStakeholder.php:31
ILIAS\ResourceStorage\Stakeholder\AbstractResourceStakeholder\getConsumerNameForPresentation
getConsumerNameForPresentation()
Definition:
AbstractResourceStakeholder.php:68
ILIAS\ResourceStorage\Stakeholder\ResourceStakeholder
Interface ResourceStakeholder.
Definition:
ResourceStakeholder.php:29
ILIAS\ResourceStorage\Stakeholder\AbstractResourceStakeholder\resourceHasBeenDeleted
resourceHasBeenDeleted(ResourceIdentification $identification)
Definition:
AbstractResourceStakeholder.php:52
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\ResourceStorage\Stakeholder\AbstractResourceStakeholder\getOwnerOfResource
getOwnerOfResource(ResourceIdentification $identification)
Definition:
AbstractResourceStakeholder.php:60
src
ResourceStorage
Stakeholder
AbstractResourceStakeholder.php
Generated on Fri Apr 4 2025 22:03:13 for ILIAS by
1.8.13 (using
Doxyfile
)