Files
server/usr/share/psa-horde/ingo/lib/Script/Imap/Api.php
2026-01-07 20:52:11 +01:00

93 lines
1.6 KiB
PHP

<?php
/**
* Copyright 2003-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file LICENSE for license information (ASL). If you
* did not receive this file, see http://www.horde.org/licenses/apache.
*
* @author Michael Slusarz <slusarz@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/apache ASL
* @package Ingo
*/
/**
* This file defines the base driver class for Ingo_Script_Imap.
*
* @author Michael Slusarz <slusarz@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/apache ASL
* @package Ingo
*/
abstract class Ingo_Script_Imap_Api
{
/**
* Configuration parameters.
*
* @var array
*/
protected $_params;
/**
* TODO
*/
public function __construct($params = array())
{
$this->_params = $params;
}
/**
* TODO
*
* @return mixed
*/
abstract public function deleteMessages($indices);
/**
* TODO
*
* @return boolean
*/
abstract public function moveMessages($indices, $folder);
/**
* TODO
*
* @return boolean
*/
abstract public function copyMessages($indices, $folder);
/**
* TODO
*/
abstract public function setMessageFlags($indices, $flags);
/**
* TODO
*
* @return Horde_Imap_Client_Data_Fetch
*/
abstract public function fetchEnvelope($indices);
/**
* TODO
*/
abstract public function search($query);
/**
* TODO
*/
public function getCache()
{
return false;
}
/**
* TODO
*/
public function storeCache($timestamp)
{
}
}