26 protected static array
$data = array();
29 string $a_context_comp,
31 string $a_action_comp,
32 string $a_action_type,
37 $db = $DIC->database();
39 "user_action_activation",
41 "context_comp" => array(
"text", $a_context_comp),
42 "context_id" => array(
"text", $a_context_id),
43 "action_comp" => array(
"text", $a_action_comp),
44 "action_type" => array(
"text", $a_action_type),
47 "active" => array(
"integer", $a_active))
50 self::$loaded =
false;
54 string $a_context_comp,
56 string $a_action_comp,
64 || !isset(
self::$data[$a_context_comp][$a_context_id])
65 || !isset(
self::$data[$a_context_comp][$a_context_id][$a_action_comp])
66 || !isset(
self::$data[$a_context_comp][$a_context_id][$a_action_comp][$a_action_type])
70 return (
bool)
self::$data[$a_context_comp][$a_context_id][$a_action_comp][$a_action_type];
77 $db = $DIC->database();
79 $set = $db->query(
"SELECT * FROM user_action_activation");
81 while ($rec = $db->fetchAssoc($set)) {
82 self::$data[$rec[
"context_comp"]][$rec[
"context_id"]][$rec[
"action_comp"]][$rec[
"action_type"]] = (bool) $rec[
"active"];
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static activateAction(string $a_context_comp, string $a_context_id, string $a_action_comp, string $a_action_type, bool $a_active)
static lookupActive(string $a_context_comp, string $a_context_id, string $a_action_comp, string $a_action_type)