mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 20:49:20 +03:00
Also removed: POP3, OAuth2 and update feature Added: admin password_hash/password_verify Requires: PHP 7.3+ Replaced: CRLF with LF Replaced: pclZip with ZipArchive
22 lines
638 B
PHP
22 lines
638 B
PHP
<?php
|
|
|
|
namespace RainLoop\Providers\Domain;
|
|
|
|
interface DomainAdminInterface extends DomainInterface
|
|
{
|
|
|
|
public function Disable(string $sName, bool $bDisable) : bool;
|
|
|
|
/**
|
|
* @return \RainLoop\Model\Domain|null
|
|
*/
|
|
public function Load(string $sName, bool $bFindWithWildCard = false, bool $bCheckDisabled = true);
|
|
|
|
public function Save(\RainLoop\Model\Domain $oDomain) : bool;
|
|
|
|
public function Delete(string $sName) : bool;
|
|
|
|
public function GetList(int $iOffset = 0, int $iLimit = 20, string $sSearch = '', bool $bIncludeAliases = true) : array;
|
|
|
|
public function Count(string $sSearch = '', bool $bIncludeAliases = true) : int;
|
|
}
|