19 declare(strict_types=1);
48 string $a_module =
"common",
49 bool $a_disabled_cache =
false 53 $this->db = $DIC->database();
54 $ilDB = $DIC->database();
56 $this->cache_disabled = $a_disabled_cache;
57 $this->module = $a_module;
59 if (!is_object(
$ilDB)) {
60 die(
"Fatal Error: ilSettings object instantiated without DB initialisation.");
70 public function read(): void
78 if (!$this->cache_disabled) {
79 if (isset(self::$settings_cache[$this->module])) {
83 $this->setting = array();
88 $query =
"SELECT * FROM settings WHERE module=" .
$ilDB->quote($this->module,
"text");
92 $this->setting[$row[
"keyword"]] = $row[
"value"];
101 ?
string $a_default_value =
null 103 return $this->setting[$a_keyword] ?? $a_default_value;
110 $query =
"DELETE FROM settings WHERE module = " .
$ilDB->quote($this->module,
"text");
111 $ilDB->manipulate($query);
113 $this->setting = array();
120 $query =
"SELECT keyword FROM settings" .
121 " WHERE module = " .
$ilDB->quote($this->module,
"text") .
122 " AND " .
$ilDB->like(
"keyword",
"text", $a_like);
125 $this->
delete($row[
"keyword"]);
129 public function delete(
string $a_keyword):
void 133 $ilDB->manipulate(
"DELETE FROM settings WHERE keyword = " .
134 $ilDB->quote($a_keyword,
"text") .
" AND module = " .
135 $ilDB->quote($this->module,
"text"));
137 unset($this->setting[$a_keyword]);
145 public function set(
string $a_key,
string $a_val):
void 149 $this->
delete($a_key);
151 if (!isset(self::$value_type)) {
152 self::$value_type = self::_getValueType();
155 if (self::$value_type ===
'text' && strlen($a_val) >= 4000) {
157 $DIC->ui()->mainTemplate()->setOnScreenMessage(
'failure', $DIC->language()->txt(
'setting_value_truncated'),
true);
158 $a_val = substr($a_val, 0, 4000);
161 $ilDB->insert(
"settings", array(
162 "module" => array(
"text", $this->module),
163 "keyword" => array(
"text", $a_key),
164 "value" => array(self::$value_type, $a_val)));
166 $this->setting[$a_key] = $a_val;
176 if ($a_val !==
"1") {
177 $ilDB->query(
"UPDATE sahs_lm SET debug = 'n'");
179 $this->
set($a_key, $a_val);
188 $ilDB = $DIC->database();
190 $query =
"SELECT value FROM settings WHERE module = %s AND keyword = %s";
191 $res =
$ilDB->queryF($query, array(
'text',
'text'), array($a_module, $a_keyword));
203 $info = $analyzer->getFieldInformation(
'settings');
205 if ($info[
'value'][
'type'] ===
'clob') {
219 string $a_new_type =
'text' 223 $ilDB = $DIC->database();
225 $old_type = self::_getValueType();
227 if ($a_new_type === $old_type) {
230 if ($a_new_type ===
'clob') {
231 $ilDB->addTableColumn(
234 array(
"type" =>
"clob",
239 $ilDB->query(
"UPDATE settings SET value2 = value");
240 $ilDB->dropTableColumn(
'settings',
'value');
241 $ilDB->renameTableColumn(
'settings',
'value2',
'value');
245 if ($a_new_type ===
'text') {
246 $ilDB->addTableColumn(
249 array(
"type" =>
"text",
255 $ilDB->query(
"UPDATE settings SET value2 = value");
256 $ilDB->dropTableColumn(
'settings',
'value');
257 $ilDB->renameTableColumn(
'settings',
'value2',
'value');
273 $ilDB = $DIC->database();
277 $query =
"SELECT * FROM settings WHERE LENGTH(value) > " 278 .
$ilDB->quote($a_limit,
'integer');
280 $result =
$ilDB->query($query);
282 while ($row =
$ilDB->fetchAssoc($result)) {
static _getValueType()
Get the type of the value column in the database.
static string $value_type
the type of settings value field in database This is determined in the set method to get a correct DB...
__construct(string $a_module="common", bool $a_disabled_cache=false)
static array $settings_cache
cache for the read settings ilSetting is instantiated more than once per request for some modules The...
setScormDebug(string $a_key, string $a_val)
static _lookupValue(string $a_module, string $a_keyword)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _changeValueType(string $a_new_type='text')
change the type of the value column in the database
deleteLike(string $a_like)
This class gives all kind of DB information using the database manager and reverse module...
static _getLongerSettings(int $a_limit=4000)
get a list of setting records with values loger than a limit