ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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\MainMenu\Storage\Resource\Repository
;
4
5
use
Generator
;
6
use
ILIAS\MainMenu\Storage\Identification\ResourceIdentification
;
7
use
ILIAS\MainMenu\Storage\Resource\ResourceNotFoundException
;
8
use
ILIAS\MainMenu\Storage\StorableResource
;
9
15
interface
ResourceRepository
16
{
17
23
public
function
blank
(
ResourceIdentification
$identification) :
StorableResource
;
24
25
32
public
function
get
(
ResourceIdentification
$identification) :
StorableResource
;
33
34
40
public
function
has
(
ResourceIdentification
$identification) : bool;
41
42
46
public
function
store
(
StorableResource
$resource) : void;
47
48
52
public
function
getAll
() :
Generator
;
53
54
58
public
function
delete
(
StorableResource
$resource) :
void
;
59
}
ILIAS\MainMenu\Storage\Identification\ResourceIdentification
Interface Identification.
Definition:
ResourceIdentification.php:14
ILIAS\MainMenu\Storage\Resource\Repository\ResourceRepository\blank
blank(ResourceIdentification $identification)
ILIAS\MainMenu\Storage\Resource\Repository\ResourceRepository
Interface ResourceRepository.
Definition:
ResourceRepository.php:15
StorableResource
ILIAS\MainMenu\Storage\Resource\Repository\ResourceRepository\has
has(ResourceIdentification $identification)
ResourceIdentification
ResourceNotFoundException
Generator
ILIAS\MainMenu\Storage\Resource\Repository\ResourceRepository\store
store(StorableResource $resource)
ILIAS\MainMenu\Storage\Resource\Repository
Definition:
ARResource.php:3
ILIAS\MainMenu\Storage\Resource\Repository\ResourceRepository\getAll
getAll()
ILIAS\MainMenu\Storage\StorableResource
Interface StorageResource.
Definition:
StorableResource.php:15
Services
MainMenu
classes
Storage
Resource
Repository
ResourceRepository.php
Generated on Sat Apr 5 2025 20:01:25 for ILIAS by
1.8.13 (using
Doxyfile
)