1: <?php
2: /**
3: * This class implements the seen flag (RFC 3501 [2.3.2]).
4: * Unseen display formatting is handled by the IMP_Flag_System_Unseen class.
5: *
6: * Copyright 2010-2012 Horde LLC (http://www.horde.org/)
7: *
8: * See the enclosed file COPYING for license information (GPL). If you
9: * did not receive this file, see http://www.horde.org/licenses/gpl.
10: *
11: * @author Michael Slusarz <slusarz@horde.org>
12: * @category Horde
13: * @license http://www.horde.org/licenses/gpl GPL
14: * @package IMP
15: */
16: class IMP_Flag_Imap_Seen extends IMP_Flag_Imap
17: {
18: /**
19: */
20: protected $_canset = true;
21:
22: /**
23: */
24: protected $_cssIcon = 'flagSeen';
25:
26: /**
27: */
28: protected $_imapflag = Horde_Imap_Client::FLAG_SEEN;
29:
30: /**
31: */
32: protected function _getLabel()
33: {
34: return _("Seen");
35: }
36:
37: }
38: