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
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\GlobalScreen\Scope\SymbolDecoratorTrait
;
32
use
ILIAS\UI\Component\Symbol\Symbol
;
33
use
ilLink
;
34
use
LogicException
;
35
42
class
RepositoryLink
extends
AbstractChildItem
implements
43
hasTitle
,
44
hasAction
,
45
hasSymbol
,
46
isInterchangeableItem
,
47
isChild
48
{
49
use
hasSymbolTrait
;
50
use
SymbolDecoratorTrait
;
51
use
isInterchangeableItemTrait
;
52
56
protected
$ref_id
= 0;
60
protected
$alt_text
;
64
protected
$title
=
''
;
65
70
public
function
withTitle
(
string
$title
) :
hasTitle
71
{
72
$clone = clone($this);
73
$clone->title =
$title
;
74
75
return
$clone;
76
}
77
81
public
function
getTitle
() : string
82
{
83
return
$this->title
;
84
}
85
86
public
function
withAltText
(
string
$alt_text
) : self
87
{
88
$clone = clone($this);
89
$clone->alt_text =
$alt_text
;
90
91
return
$clone;
92
}
93
97
public
function
getAltText
() : string
98
{
99
return
$this->alt_text
;
100
}
101
105
final
public
function
getAction
() : string
106
{
107
return
ilLink::_getLink
($this->ref_id);
108
}
109
114
public
function
withAction
(
string
$action) :
hasAction
115
{
116
$clone = clone $this;
117
$clone->ref_id = (int) $action;
118
119
return
$clone;
120
}
121
122
public
function
withRefId
(
int
$ref_id
) : self
123
{
124
$clone = clone $this;
125
$clone->ref_id =
$ref_id
;
126
127
return
$clone;
128
}
129
130
public
function
getSymbol
() :
Symbol
131
{
132
return
$this->symbol;
133
}
134
138
public
function
getRefId
() : int
139
{
140
return
$this->ref_id
;
141
}
142
146
public
function
withIsLinkToExternalAction
(
bool
$is_external) :
hasAction
147
{
148
throw
new
LogicException
(
"Repository-Links are always internal"
);
149
}
150
154
public
function
isLinkWithExternalAction
() : bool
155
{
156
return
false
;
157
}
158
}
LogicException
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isInterchangeableItem
Definition:
isInterchangeableItem.php:27
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\$ref_id
$ref_id
Definition:
RepositoryLink.php:56
ILIAS\UI\Component\Symbol\Symbol
This describes a symbol.
Definition:
Symbol.php:11
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\withRefId
withRefId(int $ref_id)
Definition:
RepositoryLink.php:122
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\getTitle
getTitle()
Definition:
RepositoryLink.php:81
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item
Definition:
Complex.php:21
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\$title
$title
Definition:
RepositoryLink.php:64
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\$alt_text
$alt_text
Definition:
RepositoryLink.php:60
ILIAS\GlobalScreen\Scope\SymbolDecoratorTrait
trait SymbolDecoratorTrait
Definition:
SymbolDecoratorTrait.php:37
isInterchangeableItemTrait
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\withIsLinkToExternalAction
withIsLinkToExternalAction(bool $is_external)
Definition:
RepositoryLink.php:146
isInterchangeableItemTrait
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:130
Symbol
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\isLinkWithExternalAction
isLinkWithExternalAction()
Definition:
RepositoryLink.php:154
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink
Class Link Attention: This is not the same as the .
Definition:
RepositoryLink.php:42
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\getAction
getAction()
Definition:
RepositoryLink.php:105
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:70
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
hasSymbol()
Definition:
hasSymbolTrait.php:66
hasAction
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\getRefId
getRefId()
Definition:
RepositoryLink.php:138
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\withAltText
withAltText(string $alt_text)
Definition:
RepositoryLink.php:86
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\getAltText
getAltText()
Definition:
RepositoryLink.php:97
ILIAS\GlobalScreen\Scope\MainMenu\Factory\hasSymbol
Interface hasSymbol Methods for Entries with Symbols.
Definition:
hasSymbol.php:32
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
ilLink\_getLink
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
Definition:
class.ilLink.php:17
ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\RepositoryLink\withAction
withAction(string $action)
Definition:
RepositoryLink.php:114
isInterchangeableItem
src
GlobalScreen
Scope
MainMenu
Factory
Item
RepositoryLink.php
Generated on Wed Apr 2 2025 21:01:42 for ILIAS by
1.8.13 (using
Doxyfile
)