Files
Phraseanet/lib/Alchemy/Phrasea/Notification/Mail/MailInfoNewOrder.php
Benoît Burnichon b6656f8b72 Fix translation keys
2016-02-16 14:45:34 +01:00

68 lines
1.5 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2016 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;
use Alchemy\Phrasea\Model\Entities\User;
class MailInfoNewOrder extends AbstractMail
{
/** @var User */
private $user;
/**
* Set the user that initiates the order
*
* @param User $user
*/
public function setUser(User $user)
{
$this->user = $user;
}
/**
* {@inheritdoc}
*/
public function getSubject()
{
return $this->app->trans('admin::register: Nouvelle commande sur %application%', ['%application%' => $this->getPhraseanetTitle()]);
}
/**
* {@inheritdoc}
*/
public function getMessage()
{
if (!$this->user instanceof User) {
throw new LogicException('You must set a user before calling getMessage()');
}
return $this->app->trans('%user% has ordered documents', ['%user%' => $this->user->getDisplayName()]);
}
/**
* {@inheritdoc}
*/
public function getButtonText()
{
return $this->app->trans('Review order on %website%', ['%website%' => $this->getPhraseanetTitle()]);
}
/**
* {@inheritdoc}
*/
public function getButtonURL()
{
return $this->app->url('prod');
}
}