2009-11-02 05:02:57 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Daily task to send emails to the owners of content items
|
|
|
|
* when the review date rolls around
|
|
|
|
*
|
|
|
|
* @package contentreview
|
|
|
|
*/
|
|
|
|
class ContentReviewEmails extends DailyTask {
|
|
|
|
function run($req) { $this->process(); }
|
|
|
|
function process() {
|
|
|
|
// Disable subsite filter (if installed)
|
|
|
|
if (ClassInfo::exists('Subsite')) {
|
|
|
|
$oldSubsiteState = Subsite::$disable_subsite_filter;
|
|
|
|
Subsite::$disable_subsite_filter = true;
|
|
|
|
}
|
|
|
|
|
2010-05-24 07:12:43 +02:00
|
|
|
$pages = DataObject::get('Page', "\"SiteTree\".\"NextReviewDate\" = '".(class_exists('SS_Datetime') ? SS_Datetime::now()->URLDate() : SSDatetime::now()->URLDate())."' AND \"SiteTree\".\"OwnerID\" != 0");
|
2009-11-02 05:02:57 +01:00
|
|
|
if ($pages && $pages->Count()) {
|
|
|
|
foreach($pages as $page) {
|
|
|
|
$owner = $page->Owner();
|
|
|
|
if ($owner) {
|
|
|
|
$sender = Security::findAnAdministrator();
|
|
|
|
$recipient = $owner;
|
|
|
|
|
|
|
|
$subject = sprintf(_t('ContentReviewEmails.SUBJECT', 'Page %s due for content review'), $page->Title);
|
|
|
|
|
|
|
|
$email = new Email();
|
|
|
|
$email->setTo($recipient->Email);
|
|
|
|
$email->setFrom(($sender->Email) ? $sender->Email : Email::getAdminEmail());
|
|
|
|
$email->setTemplate('ContentReviewEmails');
|
|
|
|
$email->setSubject($subject);
|
|
|
|
$email->populateTemplate(array(
|
2012-07-16 07:50:50 +02:00
|
|
|
"PageCMSLink" => "admin/pages/edit/show/".$page->ID,
|
2009-11-02 05:02:57 +01:00
|
|
|
"Recipient" => $recipient,
|
|
|
|
"Sender" => $sender,
|
|
|
|
"Page" => $page,
|
2010-05-11 07:35:23 +02:00
|
|
|
"StageSiteLink" => Controller::join_links($page->Link(), "?stage=Stage"),
|
|
|
|
"LiveSiteLink" => Controller::join_links($page->Link(), "?stage=Live"),
|
2009-11-02 05:02:57 +01:00
|
|
|
));
|
|
|
|
|
2010-01-22 00:36:52 +01:00
|
|
|
$email->send();
|
2009-11-02 05:02:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Revert subsite filter (if installed)
|
|
|
|
if (ClassInfo::exists('Subsite')) {
|
|
|
|
Subsite::$disable_subsite_filter = $oldSubsiteState;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|