mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03:00
28 lines
No EOL
495 B
PHP
28 lines
No EOL
495 B
PHP
<?php
|
|
|
|
namespace RainLoop\Providers\Settings;
|
|
|
|
interface SettingsInterface
|
|
{
|
|
/**
|
|
* @param \RainLoop\Account $oAccount
|
|
*
|
|
* @return array
|
|
*/
|
|
public function Load(\RainLoop\Account $oAccount);
|
|
|
|
/**
|
|
* @param \RainLoop\Account $oAccount
|
|
* @param array $aSettings
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function Save(\RainLoop\Account $oAccount, array $aSettings);
|
|
|
|
/**
|
|
* @param string $sEmail
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function ClearByEmail($sEmail);
|
|
} |