silverstripe-blog/code/extensions/BlogPostNotifications.php

33 lines
798 B
PHP
Raw Normal View History

2015-04-09 06:01:28 +02:00
<?php
/**
2015-05-09 16:33:12 +02:00
* Customise blog post to support comment notifications.
*
* Extends {@see BlogPost} with extensions to {@see CommentNotifiable}.
2015-04-09 06:01:28 +02:00
*/
2015-11-21 07:17:29 +01:00
class BlogPostNotifications extends DataExtension
{
/**
* Notify all authors of notifications.
*
* @param SS_List $list
* @param mixed $comment
*/
public function updateNotificationRecipients(&$list, &$comment)
{
$list = $this->owner->Authors();
}
2015-04-09 06:01:28 +02:00
2015-11-21 07:17:29 +01:00
/**
* Update comment to include the page title.
*
* @param string $subject
* @param Comment $comment
* @param Member|string $recipient
*/
public function updateNotificationSubject(&$subject, &$comment, &$recipient)
{
$subject = sprintf('A new comment has been posted on ', $this->owner->Title);
}
2015-04-09 06:01:28 +02:00
}