ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ 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
class.ilPortfolioDeclarationOfAuthorship.php
Go to the documentation of this file.
1
<?php
2
24
class
ilPortfolioDeclarationOfAuthorship
25
{
26
protected
ilSetting
$prtf_settings
;
27
protected
ilLanguage
$lng
;
28
29
public
function
__construct
()
30
{
31
global
$DIC
;
32
33
$this->
lng
= $DIC->language();
34
$this->prtf_settings =
new
ilSetting
(
"prtf"
);
35
}
36
40
public
function
getForLanguage
(
41
string
$l
42
): string {
43
return
(
string
) $this->prtf_settings->get(
"decl_author_"
. $l);
44
}
45
49
public
function
setForLanguage
(
50
string
$l,
51
string
$value
52
): void {
53
$this->prtf_settings->set(
"decl_author_"
. $l, $value);
54
}
55
59
public
function
getForUser
(
60
ilObjUser
$user
61
): string {
62
$lng =
$this->lng
;
63
64
$decl = $this->
getForLanguage
($user->
getLanguage
());
65
if
($decl ===
""
) {
66
$decl = $this->
getForLanguage
($lng->
getDefaultLanguage
());
67
}
68
return
$decl;
69
}
70
}
ilLanguage
ilPortfolioDeclarationOfAuthorship\$prtf_settings
ilSetting $prtf_settings
Definition:
class.ilPortfolioDeclarationOfAuthorship.php:26
ilLanguage\getDefaultLanguage
getDefaultLanguage()
Return default language.
Definition:
class.ilLanguage.php:125
ilPortfolioDeclarationOfAuthorship\getForLanguage
getForLanguage(string $l)
Get for language.
Definition:
class.ilPortfolioDeclarationOfAuthorship.php:40
ilPortfolioDeclarationOfAuthorship\getForUser
getForUser(ilObjUser $user)
Get for user.
Definition:
class.ilPortfolioDeclarationOfAuthorship.php:59
ilPortfolioDeclarationOfAuthorship
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilPortfolioDeclarationOfAuthorship.php:24
ilObjUser
ilPortfolioDeclarationOfAuthorship\$lng
ilLanguage $lng
Definition:
class.ilPortfolioDeclarationOfAuthorship.php:27
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:61
$DIC
global $DIC
Definition:
shib_login.php:22
ilPortfolioDeclarationOfAuthorship\__construct
__construct()
Definition:
class.ilPortfolioDeclarationOfAuthorship.php:29
ilPortfolioDeclarationOfAuthorship\setForLanguage
setForLanguage(string $l, string $value)
Set for language.
Definition:
class.ilPortfolioDeclarationOfAuthorship.php:49
ilObjUser\getLanguage
getLanguage()
Definition:
class.ilObjUser.php:1521
ilSetting
components
ILIAS
Portfolio
classes
class.ilPortfolioDeclarationOfAuthorship.php
Generated on Sat Apr 5 2025 23:03:47 for ILIAS by
1.8.13 (using
Doxyfile
)