Horde_Kolab_Storage_Data_Base::deleteBackendIds PHP Method

deleteBackendIds() public method

Delete the specified messages from this folder.
public deleteBackendIds ( array | string $uids )
$uids array | string Backend id(s) of the message to be deleted.
    public function deleteBackendIds($uids)
    {
        if (!is_array($uids)) {
            $uids = array($uids);
        }
        $this->_driver->deleteMessages($this->_folder->getPath(), $uids);
        $this->_driver->expunge($this->_folder->getPath());
    }