ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.AccessSessionRepository.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Portfolio\Access
;
22
28
class
AccessSessionRepository
29
{
30
public
const
KEY_BASE
=
"port_acc_"
;
31
32
public
function
__construct
()
33
{
34
}
35
36
public
function
setSharedSessionPassword
(
int
$node_id,
string
$pw): void
37
{
38
$key
= self::KEY_BASE .
"_shpw_"
. $node_id;
39
\ilSession::set
(
$key
, $pw);
40
}
41
42
public
function
getSharedSessionPassword
(
int
$node_id): string
43
{
44
$key
= self::KEY_BASE .
"_shpw_"
. $node_id;
45
if
(\
ilSession::has
(
$key
)) {
46
return \ilSession::get
(
$key
);
47
}
48
return
""
;
49
}
50
}
ILIAS\Portfolio\Access\AccessSessionRepository\getSharedSessionPassword
getSharedSessionPassword(int $node_id)
Definition:
class.AccessSessionRepository.php:42
ILIAS\Portfolio\Access\AccessSessionRepository\setSharedSessionPassword
setSharedSessionPassword(int $node_id, string $pw)
Definition:
class.AccessSessionRepository.php:36
ILIAS\Portfolio\Access
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.AccessSessionRepository.php:21
ILIAS\Portfolio\Access\AccessSessionRepository\__construct
__construct()
Definition:
class.AccessSessionRepository.php:32
ILIAS\LTI\ToolProvider\$key
string $key
Consumer key/client ID value.
Definition:
System.php:193
ilSession\has
static has($a_var)
Definition:
class.ilSession.php:464
ILIAS\Repository\get
get(string $key, Refinery\Transformation $t)
Get passed parameter, if not data passed, get key from http request.
Definition:
trait.BaseGUIRequest.php:209
ILIAS\Portfolio\Access\AccessSessionRepository\KEY_BASE
const KEY_BASE
Definition:
class.AccessSessionRepository.php:30
ILIAS\Portfolio\Access\AccessSessionRepository
Stores repository clipboard data.
Definition:
class.AccessSessionRepository.php:28
ilSession\set
static set(string $a_var, $a_val)
Set a value.
Definition:
class.ilSession.php:451
Modules
Portfolio
Access
class.AccessSessionRepository.php
Generated on Thu Apr 3 2025 22:01:32 for ILIAS by
1.8.13 (using
Doxyfile
)