]> git.mxchange.org Git - friendica.git/commitdiff
Add load_config hook doc
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 1 Jul 2018 19:27:05 +0000 (15:27 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 16 Jul 2018 23:38:15 +0000 (19:38 -0400)
doc/Addons.md

index 375f5eafddf45c1144aa5d2dfb775a5e2d68a170..2465db7307f0654cf5ffa400c5fd48a2312e9ab7 100644 (file)
@@ -323,6 +323,9 @@ Called before calling PHP's `mail()`.
 - **body**
 - **headers**
 
+### load_config
+Called during `App` initialization to allow addons to load their own configuration file(s) with `App::loadConfigFile()`.
+
 ### nav_info
 Called after the navigational menu is build in `include/nav.php`.
 `$b` is an array containing `$nav` from `include/nav.php`.
@@ -565,6 +568,10 @@ Here is a complete list of all hook callbacks with file locations (as of 01-Apr-
 
     Addon::callHooks("template_vars", $arr);
 
+### src/App.php
+
+    Addon::callHooks('load_config');
+
 ### src/Model/Item.php
 
     Addon::callHooks('post_local', $item);