ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
RepositoryLink.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item
;
22
23
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\AbstractChildItem
;
24
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasAction
;
25
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
;
26
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbolTrait
;
27
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
;
28
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isChild
;
29
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isInterchangeableItem
;
30
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isInterchangeableItemTrait
;
31
use
ILIAS\UI\Component\Symbol\Symbol
;
32
use
ilLink
;
33
use
LogicException
;
34
38
class
RepositoryLink
extends
AbstractChildItem
implements
39
hasTitle
,
40
hasAction
,
41
hasSymbol
,
42
isInterchangeableItem
,
43
isChild
44
{
45
use
hasSymbolTrait
;
46
use
isInterchangeableItemTrait
;
47
48
protected
int
$ref_id
= 0;
49
protected
string
$alt_text
;
50
protected
string
$title
=
''
;
51
56
public
function
withTitle
(
string
$title):
hasTitle
57
{
58
$clone = clone($this);
59
$clone->title =
$title
;
60
61
return
$clone;
62
}
63
67
public
function
getTitle
(): string
68
{
69
return
$this->title
;
70
}
71
72
public
function
withAltText
(
string
$alt_text): self
73
{
74
$clone = clone($this);
75
$clone->alt_text =
$alt_text
;
76
77
return
$clone;
78
}
79
83
public
function
getAltText
(): string
84
{
85
return
$this->alt_text
;
86
}
87
91
final
public
function
getAction
(): string
92
{
93
return
ilLink::_getLink($this->ref_id);
94
}
95
100
public
function
withAction
(
string
$action):
hasAction
101
{
102
$clone = clone $this;
103
$clone->ref_id = (
int
) $action;
104
105
return
$clone;
106
}
107
108
public
function
withRefId
(
int
$ref_id): self
109
{
110
$clone = clone $this;
111
$clone->ref_id =
$ref_id
;
112
113
return
$clone;
114
}
115
116
public
function
getSymbol
():
Symbol
117
{
118
return
$this->symbol;
119
}
120
124
public
function
getRefId
():
int
125
{
126
return
$this->ref_id
;
127
}
128
132
public
function
withIsLinkToExternalAction
(
bool
$is_external):
hasAction
133
{
134
throw
new
LogicException
(
"Repository-Links are always internal"
);
135
}
136
140
public
function
isLinkWithExternalAction
(): bool
141
{
142
return
false
;
143
}
144
}
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\$title
string $title
Definition:
RepositoryLink.php:50
LogicException
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isInterchangeableItem
Definition:
isInterchangeableItem.php:27
ILIAS\UI\Component\Symbol\Symbol
This describes a symbol.
Definition:
Symbol.php:29
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\withRefId
withRefId(int $ref_id)
Definition:
RepositoryLink.php:108
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\getTitle
getTitle()
Definition:
RepositoryLink.php:67
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item
Definition:
Complex.php:21
isInterchangeableItemTrait
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\withIsLinkToExternalAction
withIsLinkToExternalAction(bool $is_external)
Definition:
RepositoryLink.php:132
isInterchangeableItemTrait
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\$alt_text
string $alt_text
Definition:
RepositoryLink.php:49
isChild
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isChild
Interface isChild.
Definition:
isChild.php:28
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\getSymbol
getSymbol()
Definition:
RepositoryLink.php:116
Symbol
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\isLinkWithExternalAction
isLinkWithExternalAction()
Definition:
RepositoryLink.php:140
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink
Definition:
RepositoryLink.php:38
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\getAction
getAction()
Definition:
RepositoryLink.php:91
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasTitle
Interface hasTitle.
Definition:
hasTitle.php:26
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\withTitle
withTitle(string $title)
Definition:
RepositoryLink.php:56
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
hasSymbol()
Definition:
hasSymbolTrait.php:63
hasAction
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\getRefId
getRefId()
Definition:
RepositoryLink.php:124
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\withAltText
withAltText(string $alt_text)
Definition:
RepositoryLink.php:72
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\getAltText
getAltText()
Definition:
RepositoryLink.php:83
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
Definition:
hasSymbol.php:30
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\$ref_id
int $ref_id
Definition:
RepositoryLink.php:48
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasAction
Interface hasAction.
Definition:
hasAction.php:26
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbolTrait
trait hasSymbolTrait
Trait hasSymbolTrait.
Definition:
hasSymbolTrait.php:32
ilLink
hasTitle
AbstractChildItem
ILIAS\GlobalScreen\Scope\MainMenu\Factory\AbstractChildItem
Class AbstractBaseItem.
Definition:
AbstractChildItem.php:29
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\withAction
withAction(string $action)
Definition:
RepositoryLink.php:100
isInterchangeableItem
components
ILIAS
GlobalScreen
src
Scope
MainMenu
Factory
Item
RepositoryLink.php
Generated on Wed Apr 2 2025 23:02:56 for ILIAS by
1.8.13 (using
Doxyfile
)