X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2FAddons.md;h=171f58ff4af9643c65e7ba911ed025110e4bac4f;hb=1f790eaeef55b51a39045c97809d95d5506c79a9;hp=d448b026b8cd8cf6d1fa23cf11cd747161c106f1;hpb=e84ad1556926acfebadfb70fd3161a0bc9ef4c6d;p=friendica.git diff --git a/doc/Addons.md b/doc/Addons.md index d448b026b8..171f58ff4a 100644 --- a/doc/Addons.md +++ b/doc/Addons.md @@ -181,6 +181,8 @@ Put your tpl files in the *templates/* subfolder of your addon. In your code, like in the function addon_name_content(), load the template file and execute it passing needed values: ```php +use Friendica\Core\Renderer; + # load template file. first argument is the template name, # second is the addon path relative to friendica top folder $tpl = Renderer::getMarkupTemplate('mytemplate.tpl', __DIR__); @@ -706,6 +708,14 @@ Here is a complete list of all hook callbacks with file locations (as of 24-Sep- Hook::callAll('page_header', DI::page()['nav']); Hook::callAll('nav_info', $nav); +### src/Core/Authentication.php + + Hook::callAll('logged_in', $a->user); + +### src/Core/StorageManager + + Hook::callAll('storage_instance', $data); + ### src/Worker/Directory.php Hook::callAll('globaldir_update', $arr);