mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 12:03:14 +00:00
93 lines
1.9 KiB
PHP
93 lines
1.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2013 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Notification\Mail;
|
|
|
|
use Alchemy\Phrasea\Exception\LogicException;
|
|
|
|
class MailInfoValidationDone extends AbstractMailWithLink
|
|
{
|
|
/** @var string */
|
|
private $title;
|
|
/** @var \User_Adapter */
|
|
private $user;
|
|
|
|
/**
|
|
* Sets the title of the validation
|
|
*
|
|
* @param string $title
|
|
*/
|
|
public function setTitle($title)
|
|
{
|
|
$this->title = $title;
|
|
}
|
|
|
|
/**
|
|
* Sets the user that finished validation
|
|
*
|
|
* @param \User_Adapter $user
|
|
*/
|
|
public function setUser(\User_Adapter $user)
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getSubject()
|
|
{
|
|
if (!$this->user) {
|
|
throw new LogicException('You must set an user before calling getSubject');
|
|
}
|
|
if (!$this->title) {
|
|
throw new LogicException('You must set an title before calling getSubject');
|
|
}
|
|
|
|
return sprintf(
|
|
_('push::mail:: Rapport de validation de %1$s pour %2$s'),
|
|
$this->user->get_display_name(),
|
|
$this->title
|
|
);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getMessage()
|
|
{
|
|
if (!$this->user) {
|
|
throw new LogicException('You must set an user before calling getMessage');
|
|
}
|
|
|
|
return sprintf(
|
|
_('%s has just sent its validation report, you can now see it'),
|
|
$this->user->get_display_name()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getButtonText()
|
|
{
|
|
return _('See validation results');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getButtonURL()
|
|
{
|
|
return $this->url;
|
|
}
|
|
}
|