X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FBaseModule.php;h=1dbf3f38d5245fb890eb686169787814c0e0f81c;hb=19f2a998d228c1485219c0e31af3eb35b38eef7f;hp=61bfe8e8d3d7fbcaf802f39e640f7d59d16b6782;hpb=393a67150171705b87cb803fc970a1f68987730d;p=friendica.git diff --git a/src/BaseModule.php b/src/BaseModule.php index 61bfe8e8d3..1dbf3f38d5 100644 --- a/src/BaseModule.php +++ b/src/BaseModule.php @@ -1,8 +1,26 @@ . + * + */ 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')