You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
2.8 KiB
165 lines
2.8 KiB
<?php
|
|
/**
|
|
* MessageModel.php
|
|
* avanzu-admin
|
|
* Date: 23.02.14
|
|
*/
|
|
|
|
namespace Chamilo\ThemeBundle\Model;
|
|
|
|
/**
|
|
* Simple implementation of the MessageInterface
|
|
*
|
|
*/
|
|
class MessageModel implements MessageInterface
|
|
{
|
|
|
|
/**
|
|
* Holds the sender
|
|
*
|
|
* @var UserInterface
|
|
*/
|
|
protected $from;
|
|
|
|
/**
|
|
* holds the Recipient
|
|
*
|
|
* @var UserInterface
|
|
*/
|
|
protected $to;
|
|
|
|
/**
|
|
* holds the date sent
|
|
* @var \DateTime
|
|
*/
|
|
protected $sentAt;
|
|
|
|
/**
|
|
* holds the subject
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $subject;
|
|
|
|
/**
|
|
* Creates a new MessageModel object with the given values.
|
|
*
|
|
* SentAt will be set to the current DateTime when null is given.
|
|
*
|
|
* @param UserInterface $from
|
|
* @param string $subject
|
|
* @param null $sentAt
|
|
* @param UserInterface $to
|
|
*/
|
|
function __construct(UserInterface $from = null, $subject= '', $sentAt = null, UserInterface $to = null)
|
|
{
|
|
$this->to = $to;
|
|
$this->subject = $subject;
|
|
$this->sentAt = $sentAt ? : new \DateTime();
|
|
$this->from = $from;
|
|
}
|
|
|
|
|
|
/**
|
|
* Set the sender
|
|
*
|
|
* @param \Chamilo\ThemeBundle\Model\UserInterface $from
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setFrom(UserInterface $from)
|
|
{
|
|
$this->from = $from;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the Sender
|
|
*
|
|
* @return \Chamilo\ThemeBundle\Model\UserInterface
|
|
*/
|
|
public function getFrom()
|
|
{
|
|
return $this->from;
|
|
}
|
|
|
|
/**
|
|
* Set the date sent
|
|
*
|
|
* @param \DateTime $sentAt
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setSentAt(\DateTime $sentAt)
|
|
{
|
|
$this->sentAt = $sentAt;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the date sent
|
|
*
|
|
* @return \DateTime
|
|
*/
|
|
public function getSentAt()
|
|
{
|
|
return $this->sentAt;
|
|
}
|
|
|
|
/**
|
|
* Set the subject
|
|
*
|
|
* @param string $subject
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setSubject($subject)
|
|
{
|
|
$this->subject = $subject;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the subject
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSubject()
|
|
{
|
|
return $this->subject;
|
|
}
|
|
|
|
/**
|
|
* Set the recipient
|
|
*
|
|
* @param \Chamilo\ThemeBundle\Model\UserInterface $to
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setTo(UserInterface $to)
|
|
{
|
|
$this->to = $to;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the recipient
|
|
*
|
|
* @return \Chamilo\ThemeBundle\Model\UserInterface
|
|
*/
|
|
public function getTo()
|
|
{
|
|
return $this->to;
|
|
}
|
|
|
|
/**
|
|
* Get the identifier
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getIdentifier()
|
|
{
|
|
return $this->getSubject();
|
|
}
|
|
|
|
}
|
|
|