]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/docfile.php
Merge remote-tracking branch 'upstream/master'
[quix0rs-gnu-social.git] / lib / docfile.php
index 982177315a3f9bb0ec139dbc63f3ba74278d0117..e3968706953003e5a88e752930c956f22ec0967f 100644 (file)
@@ -63,24 +63,29 @@ class DocFile
 
         $filename = null;
 
-        foreach ($paths as $path) {
+        if (Event::handle('StartDocFileForTitle', array($title, &$paths, &$filename))) {
 
-            $def = $path.'/'.$title;
+            foreach ($paths as $path) {
 
-            if (!file_exists($def)) {
-                $def = null;
-            }
+                $def = $path.'/'.$title;
 
-            $lang = glob($path.'/'.$title.'.*');
+                if (!file_exists($def)) {
+                    $def = null;
+                }
 
-            if ($lang === false) {
-                $lang = array();
-            }
+                $lang = glob($path.'/'.$title.'.*');
 
-            if (!empty($lang) || !empty($def)) {
-                $filename = self::negotiateLanguage($lang, $def);
-                break;
+                if ($lang === false) {
+                    $lang = array();
+                }
+
+                if (!empty($lang) || !empty($def)) {
+                    $filename = self::negotiateLanguage($lang, $def);
+                    break;
+                }
             }
+
+            Event::handle('EndDocFileForTitle', array($title, $paths, &$filename));
         }
 
         if (empty($filename)) {