mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
bfc448fa7f
Fixed whitespace git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@47726 467b73ca-7a2a-4603-9d3b-597d59a354a9
56 lines
1.4 KiB
PHP
Executable File
56 lines
1.4 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @package cms
|
|
* @subpackage newsletter
|
|
*/
|
|
|
|
/**
|
|
* Displays a list of all members that have unsubscribed from the list
|
|
*/
|
|
class UnsubscribedList extends FormField {
|
|
|
|
protected $nlType;
|
|
|
|
function __construct( $name, $newsletterType ) {
|
|
parent::__construct( $name, '', null );
|
|
|
|
if( is_object( $newsletterType ) )
|
|
$this->nlType = $newsletterType;
|
|
else
|
|
$this->nlType = DataObject::get_by_id( 'NewsletterType', $newsletterType );
|
|
}
|
|
|
|
function FieldHolder() {
|
|
return $this->renderWith( 'NewsletterAdmin_UnsubscribedList' );
|
|
}
|
|
|
|
function Entries() {
|
|
|
|
$id = $this->nlType->ID;
|
|
|
|
$unsubscribeRecords = DataObject::get( 'Member_UnsubscribeRecord', "`NewsletterTypeID`='$id'" );
|
|
|
|
// user_error($id, E_USER_ERROR );
|
|
|
|
if( !$unsubscribeRecords )
|
|
return null;
|
|
|
|
foreach( $unsubscribeRecords as $unsubscribeRecord ) {
|
|
if( $unsubscribeRecord ) {
|
|
$unsubscribedUsers[] = new ArrayData( array(
|
|
'Record' => $unsubscribeRecord,
|
|
'Member' => DataObject::get_by_id( 'Member', $unsubscribeRecord->MemberID )
|
|
));
|
|
}
|
|
}
|
|
|
|
return new DataObjectSet( $unsubscribedUsers );
|
|
}
|
|
|
|
function setController($controller) {
|
|
$this->controller = $controller;
|
|
}
|
|
}
|
|
?>
|