]> git.mxchange.org Git - friendica.git/blobdiff - doc/Addons.md
Merge pull request #8158 from tobiasd/20200123-de
[friendica.git] / doc / Addons.md
index 9260ee013ca7eab0eb05bc0419a3b7eb077c7ab7..171f58ff4af9643c65e7ba911ed025110e4bac4f 100644 (file)
@@ -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__);