Preparing to support wildcard domains.

This commit is contained in:
RainLoop Team 2014-02-07 20:12:43 +04:00
parent c811fdf545
commit 126b55b2d5
4 changed files with 126 additions and 44 deletions

View file

@ -37,16 +37,13 @@ interface DomainAdminInterface extends DomainInterface
/**
* @param int $iOffset
* @param int $iLimit = 20
* @param string $sSearch = ''
*
* @return array
*/
public function GetList($iOffset, $iLimit = 20, $sSearch = '');
public function GetList($iOffset, $iLimit = 20);
/**
* @param string $sSearch = ''
*
* @return int
*/
public function Count($sSearch = '');
public function Count();
}