summaryrefslogtreecommitdiff
path: root/classes/db/prefs.php
blob: 209ef58c16d5980f56a36c62d845c0c8db11491c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
class Db_Prefs {
	// this class is a stub for the time being (to be removed)

	/**
	 * @return bool|int|null|string
	 */
	function read(string $pref_name, ?int $user_id = null, bool $die_on_error = false) {
		return get_pref($pref_name, $user_id);
	}

	/**
	 * @param mixed $value
	 */
	function write(string $pref_name, $value, ?int $user_id = null, bool $strip_tags = true): bool {
		return set_pref($pref_name, $value, $user_id, $strip_tags);
	}
}