Replace Module::init() with Constructors

This commit is contained in:
Philipp 2021-11-17 21:32:57 +01:00
parent de6bb280b1
commit ce578a7745
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
33 changed files with 882 additions and 600 deletions

View file

@ -21,6 +21,8 @@
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.
@ -37,11 +39,13 @@ class LegacyModule extends BaseModule
*/
private $moduleName = '';
public function __construct(string $file_path = '', array $parameters = [])
public function __construct(L10n $l10n, string $file_path = '', array $parameters = [])
{
parent::__construct($parameters);
parent::__construct($l10n, $parameters);
$this->setModuleFile($file_path);
$this->runModuleFunction('init');
}
/**
@ -61,11 +65,6 @@ class LegacyModule extends BaseModule
require_once $file_path;
}
public function init()
{
$this->runModuleFunction('init');
}
public function content(): string
{
return $this->runModuleFunction('content');