mirror of
https://github.com/retailcrm/Fetch.git
synced 2024-11-22 11:16:03 +03:00
allow setFlags() to set multiple flags as an array
This commit is contained in:
parent
4027b05fc6
commit
56983f0365
@ -677,27 +677,36 @@ class Message
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function is used to enable or disable a flag on the imap message.
|
* This function is used to enable or disable one or more flags on the imap message.
|
||||||
*
|
*
|
||||||
* @param string $flag Flagged, Answered, Deleted, Seen, Draft
|
* @param string|array $flag Flagged, Answered, Deleted, Seen, Draft
|
||||||
* @param bool $enable
|
* @param bool $enable
|
||||||
* @throws \InvalidArgumentException
|
* @throws \InvalidArgumentException
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function setFlag($flag, $enable = true)
|
public function setFlag($flag, $enable = true)
|
||||||
{
|
{
|
||||||
|
$flags = (is_array($flag)) ? $flag : array($flag);
|
||||||
|
|
||||||
|
foreach ($flags as $i => $flag) {
|
||||||
|
$flag = ltrim(strtolower($flag), '\\');
|
||||||
if (!in_array($flag, self::$flagTypes) || $flag == self::FLAG_RECENT)
|
if (!in_array($flag, self::$flagTypes) || $flag == self::FLAG_RECENT)
|
||||||
throw new \InvalidArgumentException('Unable to set invalid flag "' . $flag . '"');
|
throw new \InvalidArgumentException('Unable to set invalid flag "' . $flag . '"');
|
||||||
|
|
||||||
$imapifiedFlag = '\\' . ucfirst($flag);
|
if ($enable) {
|
||||||
|
|
||||||
if ($enable === true) {
|
|
||||||
$this->status[$flag] = true;
|
$this->status[$flag] = true;
|
||||||
|
|
||||||
return imap_setflag_full($this->imapStream, $this->uid, $imapifiedFlag, ST_UID);
|
|
||||||
} else {
|
} else {
|
||||||
unset($this->status[$flag]);
|
unset($this->status[$flag]);
|
||||||
|
}
|
||||||
|
|
||||||
|
$flags[$i] = $flag;
|
||||||
|
}
|
||||||
|
|
||||||
|
$imapifiedFlag = '\\'.implode(' \\', array_map('ucfirst', $flags));
|
||||||
|
|
||||||
|
if ($enable === true) {
|
||||||
|
return imap_setflag_full($this->imapStream, $this->uid, $imapifiedFlag, ST_UID);
|
||||||
|
} else {
|
||||||
return imap_clearflag_full($this->imapStream, $this->uid, $imapifiedFlag, ST_UID);
|
return imap_clearflag_full($this->imapStream, $this->uid, $imapifiedFlag, ST_UID);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user