2015-10-29 07:13:29 +01:00
< ? php
/**
* 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 )
*/
2016-12-20 10:58:55 +01:00
function credits_content ( App & $a ) {
2015-10-29 07:13:29 +01:00
/* fill the page with credits */
$f = fopen ( 'util/credits.txt' , 'r' );
$names = fread ( $f , filesize ( 'util/credits.txt' ));
$arr = explode ( " \n " , htmlspecialchars ( $names ));
fclose ( $f );
$tpl = get_markup_template ( 'credits.tpl' );
return replace_macros ( $tpl , array (
2015-10-30 18:05:45 +01:00
'$title' => t ( 'Credits' ),
2015-10-29 07:13:29 +01:00
'$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' => $arr ,
));
}