Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Storage.php
Go to the documentation of this file.
1 <?php
29 {
30  // maildir and IMAP flags, using IMAP names, where possible to be able to distinguish between IMAP
31  // system flags and other flags
32  const FLAG_PASSED = 'Passed';
33  const FLAG_SEEN = '\Seen';
34  const FLAG_UNSEEN = '\Unseen';
35  const FLAG_ANSWERED = '\Answered';
36  const FLAG_FLAGGED = '\Flagged';
37  const FLAG_DELETED = '\Deleted';
38  const FLAG_DRAFT = '\Draft';
39  const FLAG_RECENT = '\Recent';
40 }
const FLAG_RECENT
Definition: Storage.php:39
const FLAG_FLAGGED
Definition: Storage.php:36
const FLAG_DELETED
Definition: Storage.php:37
const FLAG_PASSED
Definition: Storage.php:32
const FLAG_DRAFT
Definition: Storage.php:38
const FLAG_UNSEEN
Definition: Storage.php:34
const FLAG_ANSWERED
Definition: Storage.php:35