mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
MINOR: added empty statics for decoration
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@70411 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
64e61cc250
commit
7908e569af
@ -739,6 +739,12 @@ class Email_BounceRecord extends DataObject {
|
||||
static $has_one = array(
|
||||
'Member' => 'Member'
|
||||
);
|
||||
|
||||
static $has_many = array();
|
||||
|
||||
static $many_many = array();
|
||||
|
||||
static $defaults = array();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -17,6 +17,12 @@ class QueuedEmail extends DataObject {
|
||||
'To' => 'Member'
|
||||
);
|
||||
|
||||
static $has_many = array();
|
||||
|
||||
static $many_many = array();
|
||||
|
||||
static $defaults = array();
|
||||
|
||||
// overwrite this method to provide a check whether or not to send the email
|
||||
function canSendEmail() {
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user