1: <?php
2: /**
3: * This class implements the junk flag.
4: * See: http://www.ietf.org/mail-archive/web/morg/current/msg00441.html
5: *
6: * Copyright 2011-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_Junk extends IMP_Flag_Imap
17: {
18: /**
19: */
20: protected $_abbreviation = 'J';
21:
22: /**
23: */
24: protected $_css = 'flagJunk';
25:
26: /**
27: */
28: // TODO: BC
29: protected $_imapflag = '$junk';
30:
31: /**
32: */
33: protected function _getLabel()
34: {
35: return _("Junk");
36: }
37:
38: }
39: