mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-29 11:01:34 +08:00
Update Plugin readme
This commit is contained in:
parent
292e21bae1
commit
4a1c3beb78
1 changed files with 8 additions and 0 deletions
|
@ -2,6 +2,14 @@ PHP
|
|||
```php
|
||||
class Plugin extends \RainLoop\Plugins\AbstractPlugin
|
||||
{
|
||||
public function __construct();
|
||||
public function Name() : string;
|
||||
public function Description() : string;
|
||||
public function UseLangs(?bool $bLangs = null) : bool;
|
||||
public function Supported() : string;
|
||||
public function Init() : void;
|
||||
public function FilterAppDataPluginSection(bool $bAdmin, bool $bAuth, array &$aConfig) : void;
|
||||
protected function configMapping() : array;
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue