Files
server/usr/share/psa-horde/imp/lib/Flag/Imap/Flagged.php
2026-01-07 20:52:11 +01:00

49 lines
992 B
PHP

<?php
/**
* Copyright 2010-2017 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see http://www.horde.org/licenses/gpl.
*
* @category Horde
* @copyright 2010-2017 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package IMP
*/
/**
* This class implements the flagged for followup flag (RFC 3501 [2.3.2]).
*
* @author Michael Slusarz <slusarz@horde.org>
* @category Horde
* @copyright 2010-2017 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package IMP
*/
class IMP_Flag_Imap_Flagged extends IMP_Flag_Imap
{
/**
*/
protected $_bgcolor = '#fcc';
/**
*/
protected $_canset = true;
/**
*/
protected $_css = 'flagFlagged';
/**
*/
protected $_imapflag = Horde_Imap_Client::FLAG_FLAGGED;
/**
*/
protected function _getLabel()
{
return _("Flagged for Followup");
}
}