浏览代码

add get_pref and get_pref_override plugin hooks

robsiemb 23 年之前
父节点
当前提交
f1e8bacd17
共有 1 个文件被更改,包括 12 次插入5 次删除
  1. 12 5
      functions/file_prefs.php

+ 12 - 5
functions/file_prefs.php

@@ -79,12 +79,19 @@ function getPref($data_dir, $username, $string, $default = '') {
     global $prefs_cache;
     $result = '';
 
-    cachePrefValues($data_dir, $username);
+    $result = do_hook_function('get_pref_override', array($username, $string));
 
-    if (isset($prefs_cache[$string])) {
-        $result = $prefs_cache[$string];
-    } else {
-        $result = $default;
+    if ($result == '') {
+        cachePrefValues($data_dir, $username);
+
+        if (isset($prefs_cache[$string])) {
+            $result = $prefs_cache[$string];
+        } else {
+            $result = do_hook_function('get_pref', array($username, $string));
+            if ($result == '') {
+                $result = $default;
+            }
+        }
     }
 
     return ($result);