3 * @file mod/credits.php
4 * Show a credits page for all the developers who helped with the project
5 * (only contributors to the git repositories for friendica core and the
6 * addons repository will be listed though ATM)
9 use Friendica\Core\L10n;
10 use Friendica\Core\Renderer;
12 function credits_content()
14 /* fill the page with credits */
15 $credits_string = file_get_contents('util/credits.txt');
16 $names = explode("\n", htmlspecialchars($credits_string));
17 $tpl = Renderer::getMarkupTemplate('credits.tpl');
18 return Renderer::replaceMacros($tpl, [
19 '$title' => L10n::t('Credits'),
20 '$thanks' => L10n::t('Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!'),