1<?php
2/**
3 * Copyright 2010-2017 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-2017 Horde LLC
10 * @license   http://www.horde.org/licenses/gpl GPL
11 * @package   IMP
12 */
13/**
14 * This class implements the forwarded flag (RFC 5550 [5.9]).
15 *
16 * @author    Michael Slusarz <slusarz@horde.org>
17 * @category  Horde
18 * @copyright 2010-2017 Horde LLC
19 * @license   http://www.horde.org/licenses/gpl GPL
20 * @package   IMP
21 */
22class IMP_Flag_Imap_Forwarded extends IMP_Flag_Imap
23{
24    /**
25     */
26    protected $_bgcolor = '#bfdfdf';
27
28    /**
29     */
30    protected $_css = 'flagForwarded';
31
32    /**
33     */
34    protected $_imapflag = Horde_Imap_Client::FLAG_FORWARDED;
35
36    /**
37     */
38    protected function _getLabel()
39    {
40        return _("Forwarded");
41    }
42
43}
44