mirror of
https://github.com/friendica/friendica
synced 2025-04-23 19:10:13 +00:00
Replace Module::init() with Constructors
This commit is contained in:
parent
de6bb280b1
commit
ce578a7745
33 changed files with 882 additions and 600 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue