]> git.mxchange.org Git - friendica.git/commitdiff
Moving mod/credits to src/Module/Credits
authorPhilipp Holzer <admin@philipp.info>
Fri, 1 Mar 2019 09:23:04 +0000 (10:23 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 23 Mar 2019 02:55:46 +0000 (22:55 -0400)
mod/credits.php [deleted file]
src/Module/Credits.php [new file with mode: 0644]

diff --git a/mod/credits.php b/mod/credits.php
deleted file mode 100644 (file)
index 3d71c54..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<?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\Core\L10n;
-use Friendica\Core\Renderer;
-
-function credits_content()
-{
-       /* 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,
-       ]);
-}
diff --git a/src/Module/Credits.php b/src/Module/Credits.php
new file mode 100644 (file)
index 0000000..b0a6545
--- /dev/null
@@ -0,0 +1,30 @@
+<?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
+{
+       public static function content()
+       {
+               /* 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,
+               ]);
+       }
+}