1: <?php
2: /**
3: * This class implements the not 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_NotJunk extends IMP_Flag_Imap
17: {
18: /**
19: */
20: protected $_css = 'flagNotJunk';
21:
22: /**
23: */
24: // TODO: BC
25: protected $_imapflag = '$notjunk';
26:
27: /**
28: */
29: protected function _getLabel()
30: {
31: return _("Not Junk");
32: }
33:
34: }
35: