]> git.mxchange.org Git - friendica.git/blobdiff - src/LegacyModule.php
Tests again
[friendica.git] / src / LegacyModule.php
index 77b35ba92c21803fcf14fa26a43593b29db74ccb..53f76766044cde16a55f9d17ccd6bbc0f7d2b7d7 100644 (file)
@@ -21,8 +21,6 @@
 
 namespace Friendica;
 
-use Friendica\Core\L10n;
-
 /**
  * This mock module enable class encapsulation of legacy global function modules.
  * After having provided the module file name, all the methods will behave like a normal Module class.
@@ -39,13 +37,11 @@ class LegacyModule extends BaseModule
         */
        private $moduleName = '';
 
-       public function __construct(L10n $l10n, string $file_path = '', array $parameters = [])
+       public function __construct(string $file_path = '', array $parameters = [])
        {
-               parent::__construct($l10n, $parameters);
+               parent::__construct($parameters);
 
                $this->setModuleFile($file_path);
-
-               $this->runModuleFunction('init');
        }
 
        /**
@@ -65,6 +61,11 @@ class LegacyModule extends BaseModule
                require_once $file_path;
        }
 
+       public function init()
+       {
+               $this->runModuleFunction('init');
+       }
+
        public function content(): string
        {
                return $this->runModuleFunction('content');