19 declare(strict_types=1);
53 public function __construct(
string $a_component_id,
string $a_sess_id =
"")
55 $this->component_id = $a_component_id;
56 if ($a_sess_id !==
"") {
57 $this->session_id = $a_sess_id;
59 $this->session_id = session_id();
65 if (!isset(self::$values[$this->component_id]) || !is_array(self::$values[$this->component_id])) {
75 public function set(
string $a_key,
string $a_val):
void 87 "session_id" => array(
"text", $this->session_id),
88 "component_id" => array(
"text", $this->component_id),
89 "vkey" => array(
"text", $a_key)
91 array(
"value" => array(
"text", $a_val))
99 public function get(
string $a_key):
string 103 $ilDB = $DIC[
'ilDB'];
105 if (isset(self::$values[$this->component_id][$a_key]) && is_array(self::$values[$this->component_id])) {
110 "SELECT value FROM usr_sess_istorage " .
111 " WHERE session_id = " .
$ilDB->quote($this->session_id,
"text") .
112 " AND component_id = " .
$ilDB->quote($this->component_id,
"text") .
113 " AND vkey = " .
$ilDB->quote($a_key,
"text")
115 $rec =
$ilDB->fetchAssoc($set);
116 $value = (string) ($rec[
'value'] ??
'');
133 if (!is_array($a_session_id)) {
134 $q =
"DELETE FROM usr_sess_istorage WHERE session_id = " .
135 $DIC->database()->quote($a_session_id,
"text");
137 $q =
"DELETE FROM usr_sess_istorage WHERE " .
138 $DIC->database()->in(
"session_id", $a_session_id,
false,
"text");
141 $DIC->database()->manipulate(
$q);
static destroySession($a_session_id)
Destroy session(s).
__construct(string $a_component_id, string $a_sess_id="")
Constructor.
Session based immediate storage.
initComponentCacheIfNotExists()