]> git.mxchange.org Git - friendica.git/blobdiff - src/BaseModule.php
Merge pull request #8631 from MrPetovan/task/remove-item-tag-field
[friendica.git] / src / BaseModule.php
index 61bfe8e8d3d7fbcaf802f39e640f7d59d16b6782..1dbf3f38d5245fb890eb686169787814c0e0f81c 100644 (file)
@@ -1,8 +1,26 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica;
 
-use Friendica\Core\L10n;
 use Friendica\Core\Logger;
 
 /**
@@ -17,7 +35,7 @@ use Friendica\Core\Logger;
 abstract class BaseModule
 {
        /**
-        * @brief Initialization method common to both content() and post()
+        * Initialization method common to both content() and post()
         *
         * Extend this method if you need to do any shared processing before both
         * content() or post()
@@ -27,7 +45,7 @@ abstract class BaseModule
        }
 
        /**
-        * @brief Module GET method to display raw content from technical endpoints
+        * Module GET method to display raw content from technical endpoints
         *
         * Extend this method if the module is supposed to return communication data,
         * e.g. from protocol implementations.
@@ -39,7 +57,7 @@ abstract class BaseModule
        }
 
        /**
-        * @brief Module GET method to display any content
+        * Module GET method to display any content
         *
         * Extend this method if the module is supposed to return any display
         * through a GET request. It can be an HTML page through templating or a
@@ -55,19 +73,18 @@ abstract class BaseModule
        }
 
        /**
-        * @brief Module POST method to process submitted data
+        * Module POST method to process submitted data
         *
         * Extend this method if the module is supposed to process POST requests.
         * Doesn't display any content
         */
        public static function post(array $parameters = [])
        {
-               // $a = self::getApp();
-               // $a->internalRedirect('module');
+               // DI::baseurl()->redirect('module');
        }
 
        /**
-        * @brief Called after post()
+        * Called after post()
         *
         * Unknown purpose
         */
@@ -130,7 +147,7 @@ abstract class BaseModule
 
        public static function getFormSecurityStandardErrorMessage()
        {
-               return L10n::t("The form security token was not correct. This probably happened because the form has been opened for too long \x28>3 hours\x29 before submitting it.") . EOL;
+               return DI::l10n()->t("The form security token was not correct. This probably happened because the form has been opened for too long \x28>3 hours\x29 before submitting it.") . EOL;
        }
 
        public static function checkFormSecurityTokenRedirectOnError($err_redirect, $typename = '', $formname = 'form_security_token')