1: <?php
2: /**
3: * This class implements the forwarded flag (RFC 5550 [5.9]).
4: *
5: * Copyright 2010-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (GPL). If you
8: * did not receive this file, see http://www.horde.org/licenses/gpl.
9: *
10: * @author Michael Slusarz <slusarz@horde.org>
11: * @category Horde
12: * @license http://www.horde.org/licenses/gpl GPL
13: * @package IMP
14: */
15: class IMP_Flag_Imap_Forwarded extends IMP_Flag_Imap
16: {
17: /**
18: */
19: protected $_bgcolor = '#bfdfdf';
20:
21: /**
22: */
23: protected $_css = 'flagForwarded';
24:
25: /**
26: */
27: protected $_imapflag = Horde_Imap_Client::FLAG_FORWARDED;
28:
29: /**
30: */
31: protected function _getLabel()
32: {
33: return _("Forwarded");
34: }
35:
36: }
37: