2019-03-01 04:23:04 -05:00
< ? php
namespace Friendica\Module ;
use Friendica\BaseModule ;
use Friendica\Core\L10n ;
use Friendica\Core\Renderer ;
/**
* 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 )
*/
class Credits extends BaseModule
{
2019-11-05 16:48:54 -05:00
public static function content ( array $parameters = [])
2019-03-01 04:23:04 -05:00
{
/* fill the page with credits */
$credits_string = file_get_contents ( 'CREDITS.txt' );
$names = explode ( " \n " , $credits_string );
$tpl = Renderer :: getMarkupTemplate ( 'credits.tpl' );
return Renderer :: replaceMacros ( $tpl , [
'$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!' ),
'$names' => $names ,
]);
}
}