]> git.mxchange.org Git - friendica.git/blobdiff - mod/credits.php
Replace old database queries with the new ones
[friendica.git] / mod / credits.php
index e0e834388fdaf602d4567229a3a9758faa508521..880b4b34c4cdbaab87a18a9c1383340ef51d32ab 100644 (file)
@@ -1,23 +1,22 @@
 <?php
-
 /**
+ * @file mod/credits.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)
  */
-
 use Friendica\App;
+use Friendica\Core\L10n;
 
-function credits_content(App $a) {
+function credits_content()
+{
        /* 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);
+       $credits_string = file_get_contents('util/credits.txt');
+       $names = explode("\n", htmlspecialchars($credits_string));
        $tpl = get_markup_template('credits.tpl');
-       return replace_macros($tpl, array(
-               '$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'  => $arr,
-       ));
+       return replace_macros($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,
+       ]);
 }