Files
server/usr/share/psa-horde/imp/lib/Maillog/Log/Reply.php
2026-01-07 20:52:11 +01:00

40 lines
837 B
PHP

<?php
/**
* Copyright 2014-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 2014-2017 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package IMP
*/
/**
* Reply log entry.
*
* @author Michael Slusarz <slusarz@horde.org>
* @category Horde
* @copyright 2014-2017 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package IMP
*/
class IMP_Maillog_Log_Reply extends IMP_Maillog_Log_Base
{
/**
*/
protected $_action = 'reply';
/**
*/
protected function _getMessage()
{
return sprintf(
_("You replied to this message on %s."),
$this->date
);
}
}