Revert "Replace Module::init() with Constructors"

This commit is contained in:
Hypolite Petovan 2021-11-19 07:23:23 -05:00 committed by GitHub
parent 0b6e0566d7
commit 89d6c89b67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
43 changed files with 921 additions and 1225 deletions

View 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');