You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
310 B
PHP
8 lines
310 B
PHP
<?php
|
|
function get_pref($pref_name, $user_id = false, $die_on_error = false) {
|
|
return Db_Prefs::get()->read($pref_name, $user_id, $die_on_error);
|
|
}
|
|
|
|
function set_pref($pref_name, $value, $user_id = false, $strip_tags = true) {
|
|
return Db_Prefs::get()->write($pref_name, $value, $user_id, $strip_tags);
|
|
} |