friendica/mod/credits.php

22 lines
765 B
PHP
Raw Normal View History

<?php
2017-04-30 06:01:26 +02:00
/**
* Show a credits page for all the developers who helped with the project
* (only contributors to the git repositories for friendica core and the
* addons repository will be listed though ATM)
*/
use Friendica\App;
2017-04-30 06:01:26 +02:00
function credits_content()
{
2017-04-30 06:01:26 +02:00
/* fill the page with credits */
$credits_string = file_get_contents('util/credits.txt');
$names = explode("\n", htmlspecialchars($credits_string));
2017-04-30 06:01:26 +02:00
$tpl = get_markup_template('credits.tpl');
return replace_macros($tpl, [
2017-04-30 06:01:26 +02:00
'$title' => t('Credits'),
'$thanks' => 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!'),
'$names' => $names,
]);
}