mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
19 lines
614 B
PHP
19 lines
614 B
PHP
<?php
|
|
|
|
namespace RainLoop\Providers\Domain;
|
|
|
|
interface DomainAdminInterface extends DomainInterface
|
|
{
|
|
|
|
public function Disable(string $sName, bool $bDisable) : bool;
|
|
|
|
public function Load(string $sName, bool $bFindWithWildCard = false, bool $bCheckDisabled = true) : ?\RainLoop\Model\Domain;
|
|
|
|
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;
|
|
}
|