1: <?php
2: /**
3: * Copyright 2010-2014 Horde LLC (http://www.horde.org/)
4: *
5: * See the enclosed file COPYING for license information (GPL). If you
6: * did not receive this file, see http://www.horde.org/licenses/gpl.
7: *
8: * @category Horde
9: * @copyright 2010-2014 Horde LLC
10: * @license http://www.horde.org/licenses/gpl GPL
11: * @package IMP
12: */
13:
14: /**
15: * This class implements the high priority flag.
16: *
17: * @author Michael Slusarz <slusarz@horde.org>
18: * @category Horde
19: * @copyright 2010-2014 Horde LLC
20: * @license http://www.horde.org/licenses/gpl GPL
21: * @package IMP
22: */
23: class IMP_Flag_System_HighPriority extends IMP_Flag_System_Match_Header
24: {
25: /**
26: */
27: protected $_abbreviation = '!';
28:
29: /**
30: */
31: protected $_bgcolor = '#fcc';
32:
33: /**
34: */
35: protected $_css = 'flagHighpriority';
36:
37: /**
38: */
39: protected $_id = 'highp';
40:
41: /**
42: */
43: protected function _getLabel()
44: {
45: return _("High Priority");
46: }
47:
48: /**
49: * @param Horde_Mime_Headers $data
50: */
51: public function match($data)
52: {
53: return ($GLOBALS['injector']->getInstance('IMP_Mime_Headers')->getPriority($data) == 'high');
54: }
55:
56: }
57: