28 protected \ILIAS\Accordion\StandardGUIRequest
$request;
33 "opened" => array(
"storage" =>
"session")
40 $this->
user = $DIC->user();
41 $this->
ctrl = $DIC->ctrl();
42 $this->db = $DIC->database();
43 $this->request = new \ILIAS\Accordion\StandardGUIRequest(
47 $this->user_id = $this->request->getUserId();
48 $this->req_acc_id = $this->request->getId();
49 $this->tab_nr = $this->request->getTabNr();
63 if ($this->user_id ==
$ilUser->getId()) {
64 switch ($this->request->getAction()) {
72 $cur_arr = explode(
";", $cur);
73 if (!in_array($this->tab_nr, $cur_arr)) {
80 implode(
";", $cur_arr)
90 $cur_arr = explode(
";", $cur);
91 if ((
$key = array_search($this->tab_nr, $cur_arr)) !==
false) {
92 unset($cur_arr[
$key]);
98 implode(
";", $cur_arr)
133 switch ($this->properties[$a_property][
"storage"]) {
138 $acc[$a_table_id][$a_user_id][$a_property] = $a_value;
153 return $acc[$a_table_id][$a_user_id][$a_property] ??
"";
158 string $id_starts_with,
163 switch ($this->properties[$property][
"storage"]) {
167 foreach ($acc as
$id => $user_values) {
168 if (substr(
$id, 0, strlen($id_starts_with)) === $id_starts_with) {
169 if (isset($user_values[$user_id][$property])) {
static get(string $a_var)
getPropertyForIdStartsWith(string $id_starts_with, int $user_id, string $property)
getCmd(string $fallback_command=null)
storeProperty(string $a_table_id, int $a_user_id, string $a_property, string $a_value)
Store property in session.
getProperty(string $a_table_id, int $a_user_id, string $a_property)
Interface ilCtrlBaseClassInterface describes ilCtrl base classes.
ILIAS Accordion StandardGUIRequest $request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static set(string $a_var, $a_val)
Set a value.