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.EditSessionRepository.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\COPage\Editor
;
20
26
class
EditSessionRepository
27
{
28
protected
const
BASE_SESSION_KEY
=
'copg_'
;
29
protected
const
ERROR_KEY
= self::BASE_SESSION_KEY .
'error'
;
30
protected
const
SUB_CMD_KEY
= self::BASE_SESSION_KEY .
'sub_cmd'
;
31
protected
const
TXT_LANG_KEY
= self::BASE_SESSION_KEY .
'text_lang'
;
32
protected
const
MEP_KEY
= self::BASE_SESSION_KEY .
'mep'
;
33
protected
const
QPL_KEY
= self::BASE_SESSION_KEY .
'qpl'
;
34
35
public
function
__construct
()
36
{
37
}
38
39
public
function
clear
(?array $text_ref_ids =
null
): void
40
{
41
$this->
clearPageError
();
42
$this->
clearMediaPool
();
43
$this->
clearQuestionPool
();
44
$this->
clearSubCmd
();
45
if
(is_array($text_ref_ids)) {
46
foreach
($text_ref_ids as $text_ref_id) {
47
$this->
clearTextLang
($text_ref_id);
48
}
49
}
50
}
51
52
public
function
clearPageError
(): void
53
{
54
\ilSession::clear
(self::ERROR_KEY);
55
}
56
60
public
function
setPageError
(
$error
): void
61
{
62
\ilSession::set
(self::ERROR_KEY,
$error
);
63
}
64
68
public
function
getPageError
()
69
{
70
return \ilSession::get
(self::ERROR_KEY) ??
""
;
71
}
72
73
public
function
clearSubCmd
(): void
74
{
75
\ilSession::clear
(self::SUB_CMD_KEY);
76
}
77
78
public
function
setSubCmd
(
string
$sub_cmd): void
79
{
80
\ilSession::set
(self::SUB_CMD_KEY, $sub_cmd);
81
}
82
83
public
function
getSubCmd
(): string
84
{
85
return \ilSession::get
(self::SUB_CMD_KEY) ??
""
;
86
}
87
88
public
function
clearTextLang
(
int
$ref_id
): void
89
{
90
\ilSession::clear
(self::TXT_LANG_KEY .
"_"
. $ref_id);
91
}
92
93
public
function
setTextLang
(
int
$ref_id
,
string
$lang_key): void
94
{
95
\ilSession::set
(self::TXT_LANG_KEY .
"_"
. $ref_id, $lang_key);
96
}
97
98
public
function
getTextLang
(
int
$ref_id
): string
99
{
100
return \ilSession::get
(self::TXT_LANG_KEY .
"_"
. $ref_id) ??
""
;
101
}
102
103
public
function
clearMediaPool
(): void
104
{
105
\ilSession::clear
(self::MEP_KEY);
106
}
107
108
public
function
setMediaPool
(
int
$pool_id): void
109
{
110
\ilSession::set
(self::MEP_KEY, $pool_id);
111
}
112
113
public
function
getMediaPool
():
int
114
{
115
return \ilSession::get
(self::MEP_KEY) ?? 0;
116
}
117
118
public
function
clearQuestionPool
(): void
119
{
120
\ilSession::clear
(self::QPL_KEY);
121
}
122
123
public
function
setQuestionPool
(
int
$pool_id): void
124
{
125
\ilSession::set
(self::QPL_KEY, $pool_id);
126
}
127
128
public
function
getQuestionPool
():
int
129
{
130
return \ilSession::get
(self::QPL_KEY) ?? 0;
131
}
132
}
ILIAS\COPage\Editor\EditSessionRepository
Editing session repository.
Definition:
class.EditSessionRepository.php:26
ILIAS\COPage\Editor\EditSessionRepository\MEP_KEY
const MEP_KEY
Definition:
class.EditSessionRepository.php:32
ILIAS\COPage\Editor\EditSessionRepository\getTextLang
getTextLang(int $ref_id)
Definition:
class.EditSessionRepository.php:98
ILIAS\COPage\Editor\EditSessionRepository\getPageError
getPageError()
Definition:
class.EditSessionRepository.php:68
ILIAS\COPage\Editor\EditSessionRepository\clearSubCmd
clearSubCmd()
Definition:
class.EditSessionRepository.php:73
ILIAS\COPage\Editor\EditSessionRepository\BASE_SESSION_KEY
const BASE_SESSION_KEY
Definition:
class.EditSessionRepository.php:28
ILIAS\COPage\Editor\EditSessionRepository\TXT_LANG_KEY
const TXT_LANG_KEY
Definition:
class.EditSessionRepository.php:31
ILIAS\COPage\Editor\EditSessionRepository\__construct
__construct()
Definition:
class.EditSessionRepository.php:35
ILIAS\COPage\Editor\EditSessionRepository\clear
clear(?array $text_ref_ids=null)
Definition:
class.EditSessionRepository.php:39
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\COPage\Editor\EditSessionRepository\getQuestionPool
getQuestionPool()
Definition:
class.EditSessionRepository.php:128
ILIAS\COPage\Editor\EditSessionRepository\clearQuestionPool
clearQuestionPool()
Definition:
class.EditSessionRepository.php:118
$ref_id
$ref_id
Definition:
ltiauth.php:65
ILIAS\COPage\Editor\EditSessionRepository\clearPageError
clearPageError()
Definition:
class.EditSessionRepository.php:52
ILIAS\COPage\Editor\EditSessionRepository\setMediaPool
setMediaPool(int $pool_id)
Definition:
class.EditSessionRepository.php:108
ILIAS\COPage\Editor\EditSessionRepository\getMediaPool
getMediaPool()
Definition:
class.EditSessionRepository.php:113
ILIAS\COPage\Editor\EditSessionRepository\clearMediaPool
clearMediaPool()
Definition:
class.EditSessionRepository.php:103
ILIAS\GlobalScreen\get
get(string $class_name)
Definition:
SingletonTrait.php:32
ILIAS\COPage\Editor
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.EditSessionRepository.php:19
ILIAS\COPage\Editor\EditSessionRepository\setPageError
setPageError($error)
Definition:
class.EditSessionRepository.php:60
ILIAS\COPage\Editor\EditSessionRepository\clearTextLang
clearTextLang(int $ref_id)
Definition:
class.EditSessionRepository.php:88
ILIAS\COPage\Editor\EditSessionRepository\setQuestionPool
setQuestionPool(int $pool_id)
Definition:
class.EditSessionRepository.php:123
ILIAS\COPage\Editor\EditSessionRepository\ERROR_KEY
const ERROR_KEY
Definition:
class.EditSessionRepository.php:29
ILIAS\COPage\Editor\EditSessionRepository\SUB_CMD_KEY
const SUB_CMD_KEY
Definition:
class.EditSessionRepository.php:30
ILIAS\COPage\Editor\EditSessionRepository\setTextLang
setTextLang(int $ref_id, string $lang_key)
Definition:
class.EditSessionRepository.php:93
ILIAS\$error
ilErrorHandling $error
Definition:
class.ilias.php:69
ILIAS\COPage\Editor\EditSessionRepository\setSubCmd
setSubCmd(string $sub_cmd)
Definition:
class.EditSessionRepository.php:78
ilSession\clear
static clear(string $a_var)
Definition:
class.ilSession.php:414
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilSession\set
static set(string $a_var, $a_val)
Set a value.
Definition:
class.ilSession.php:393
ILIAS\COPage\Editor\EditSessionRepository\getSubCmd
getSubCmd()
Definition:
class.EditSessionRepository.php:83
ILIAS\COPage\Editor\EditSessionRepository\QPL_KEY
const QPL_KEY
Definition:
class.EditSessionRepository.php:33
components
ILIAS
COPage
Editor
class.EditSessionRepository.php
Generated on Sat Apr 5 2025 23:02:54 for ILIAS by
1.8.13 (using
Doxyfile
)