Files
Phraseanet/lib/Alchemy/Phrasea/Notification/Mail/MailInfoOrderCancelled.php
2014-01-06 15:28:12 +01:00

86 lines
1.8 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2014 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 MailInfoOrderCancelled extends AbstractMail
{
/** @var \User_Adapter */
private $deliverer;
/** @var integer */
private $quantity;
/**
* Sets the quantity that has been denied
*
* @param integer $quantity
*/
public function setQuantity($quantity)
{
$this->quantity = $quantity;
}
/**
* Sets the user that has denied the some of the order
*
* @param \User_Adapter $deliverer
*/
public function setDeliverer(\User_Adapter $deliverer)
{
$this->deliverer = $deliverer;
}
/**
* {@inheritdoc}
*/
public function getSubject()
{
return _('push::mail:: Refus d\'elements de votre commande');
}
/**
* {@inheritdoc}
*/
public function getMessage()
{
if (!$this->deliverer instanceof \User_Adapter) {
throw new LogicException('You must set a deliverer before calling getMessage()');
}
if (null === $this->quantity) {
throw new LogicException('You must set a deliverer before calling getMessage()');
}
return sprintf(
_('%s a refuse %d elements de votre commande'),
$this->deliverer->get_display_name(),
$this->quantity
);
}
/**
* {@inheritdoc}
*/
public function getButtonText()
{
return _('See my order');
}
/**
* {@inheritdoc}
*/
public function getButtonURL()
{
return $this->app->url('prod');
}
}