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
ResourceRepository.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
3
namespace
ILIAS\ResourceStorage\Resource\Repository
;
4
5
use
Generator
;
6
use
ILIAS\ResourceStorage\Identification\ResourceIdentification
;
7
use
ILIAS\ResourceStorage\Resource\ResourceNotFoundException
;
8
use
ILIAS\ResourceStorage\Resource\StorableResource
;
9
use
ILIAS\ResourceStorage\Lock\LockingRepository
;
10
use
ILIAS\ResourceStorage\Preloader\PreloadableRepository
;
11
17
interface
ResourceRepository
extends
LockingRepository
,
PreloadableRepository
18
{
19
25
public
function
blank
(
ResourceIdentification
$identification) :
StorableResource
;
26
27
34
public
function
get
(
ResourceIdentification
$identification) :
StorableResource
;
35
36
42
public
function
has
(
ResourceIdentification
$identification) : bool;
43
44
48
public
function
store
(
StorableResource
$resource) : void;
49
50
54
public
function
getAll
() :
Generator
;
55
56
60
public
function
delete
(
StorableResource
$resource) :
void
;
61
}
PreloadableRepository
ILIAS\ResourceStorage\Resource\Repository\ResourceRepository\has
has(ResourceIdentification $identification)
ILIAS\ResourceStorage\Resource\StorableResource
Interface StorageResource.
Definition:
StorableResource.php:14
StorableResource
ResourceIdentification
ILIAS\ResourceStorage\Preloader\PreloadableRepository
Interface PreloadableRepository.
Definition:
PreloadableRepository.php:10
ResourceNotFoundException
ILIAS\ResourceStorage\Identification\ResourceIdentification
Interface Identification.
Definition:
ResourceIdentification.php:14
ILIAS\ResourceStorage\Resource\Repository\ResourceRepository\getAll
getAll()
ILIAS\ResourceStorage\Resource\Repository\ResourceRepository\blank
blank(ResourceIdentification $identification)
ILIAS\ResourceStorage\Lock\LockingRepository
Interface LockingRepository.
Definition:
LockingRepository.php:9
Generator
ILIAS\ResourceStorage\Resource\Repository\ResourceRepository\store
store(StorableResource $resource)
ILIAS\ResourceStorage\Resource\Repository\ResourceRepository
Interface ResourceRepository.
Definition:
ResourceRepository.php:17
LockingRepository
ILIAS\ResourceStorage\Resource\Repository
Definition:
ResourceDBRepository.php:3
src
ResourceStorage
Resource
Repository
ResourceRepository.php
Generated on Mon Apr 14 2025 21:01:47 for ILIAS by
1.8.13 (using
Doxyfile
)