%PDF- %PDF-
Direktori : /www/varak.net/mail2.varak.net_old/libraries/ProjectSeven/Storage/ |
Current File : //www/varak.net/mail2.varak.net_old/libraries/ProjectSeven/Storage/StorageInterface.php |
<?php /* * Copyright 2004-2014, AfterLogic Corp. * Licensed under AGPLv3 license or AfterLogic license * if commercial version of the product was purchased. * See the LICENSE file for a full license statement. */ namespace ProjectSeven\Storage; /** * @category ProjectSeven * @package Storage */ interface StorageInterface { /** * @param \CAccount $oAccount * @param int $iStorageType * @param string $sKey * @param string $sValue * * @return bool */ public function Put(\CAccount $oAccount, $iStorageType, $sKey, $sValue); /** * @param \CAccount $oAccount * @param int $iStorageType * @param string $sKey * * @return string | bool */ public function Get(\CAccount $oAccount, $iStorageType, $sKey); /** * @param \CAccount $oAccount * @param int $iStorageType * @param string $sKey * * @return bool */ public function Clear(\CAccount $oAccount, $iStorageType, $sKey); }