2015-10-29 07:13:29 +01:00
< ? php
/**
2018-01-21 19:33:59 +01:00
* @ file mod / credits . php
2015-10-29 07:13:29 +01: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 )
*/
2019-01-07 07:11:16 +01:00
2018-01-21 19:33:59 +01:00
use Friendica\Core\L10n ;
2018-10-31 15:35:50 +01:00
use Friendica\Core\Renderer ;
2017-04-30 06:01:26 +02:00
2018-01-13 05:41:18 +01:00
function credits_content ()
{
2017-04-30 06:01:26 +02:00
/* fill the page with credits */
2018-11-29 04:59:06 +01:00
$credits_string = file_get_contents ( 'CREDITS.txt' );
2018-12-25 17:37:32 +01:00
$names = explode ( " \n " , $credits_string );
2018-10-31 15:44:06 +01:00
$tpl = Renderer :: getMarkupTemplate ( 'credits.tpl' );
2018-10-31 15:35:50 +01:00
return Renderer :: replaceMacros ( $tpl , [
2018-01-21 19:33:59 +01:00
'$title' => L10n :: t ( 'Credits' ),
'$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!' ),
2018-01-13 05:41:18 +01:00
'$names' => $names ,
]);
2015-10-29 07:13:29 +01:00
}