mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 14:03:27 +00:00
PHRAS-3595
This commit is contained in:
@@ -77,6 +77,11 @@ class FeedEntry
|
||||
*/
|
||||
private $feed;
|
||||
|
||||
/**
|
||||
* @ORM\Column(name="notifyemail_on", type="datetime", nullable=true)
|
||||
*/
|
||||
private $notifyEmailOn;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
@@ -213,7 +218,7 @@ class FeedEntry
|
||||
/**
|
||||
* Set updated
|
||||
*
|
||||
* @param \DateTime $updated
|
||||
* @param \DateTime $updatedOn
|
||||
* @return FeedEntry
|
||||
*/
|
||||
public function setUpdatedOn($updatedOn)
|
||||
@@ -312,6 +317,26 @@ class FeedEntry
|
||||
return $this->feed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get notifyEmailOn
|
||||
*
|
||||
* @return \DateTime|null
|
||||
*/
|
||||
public function getNotifyEmailOn()
|
||||
{
|
||||
return $this->notifyEmailOn;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set notifyEmailOn
|
||||
*
|
||||
* @param \DateTime $notifyEmailOn
|
||||
*/
|
||||
public function setNotifyEmailOn($notifyEmailOn)
|
||||
{
|
||||
$this->notifyEmailOn = $notifyEmailOn;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a boolean indicating whether the given User is the publisher of the entry.
|
||||
*
|
||||
|
Reference in New Issue
Block a user