MINOR added Rfc2822 method to SS_Datetime. Fixed bug where dates in DataObject would not set times. (from r100032)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@105546 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-05-25 03:40:37 +00:00
parent 052f71f4b3
commit 3bd114256b
2 changed files with 8 additions and 4 deletions

View File

@ -1013,9 +1013,9 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
// Add the class name to the base object
if($idx == 0) {
$manipulation[$class]['fields']["LastEdited"] = SS_Datetime::now()->URLDate();
$manipulation[$class]['fields']["LastEdited"] = "'".SS_Datetime::now()->Rfc2822()."'";
if($dbCommand == 'insert') {
$manipulation[$class]['fields']["Created"] = SS_Datetime::now()->URLDate();
$manipulation[$class]['fields']["Created"] = "'".SS_Datetime::now()->Rfc2822()."'";
//echo "<li>$this->class - " .get_class($this);
$manipulation[$class]['fields']["ClassName"] = "'$this->class'";
}
@ -1057,9 +1057,9 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
$this->flushCache();
if(!isset($this->record['Created'])) {
$this->record['Created'] = SS_Datetime::now()->URLDate();
$this->record['Created'] = SS_Datetime::now()->Rfc2822();
}
$this->record['LastEdited'] = SS_Datetime::now()->URLDate();
$this->record['LastEdited'] = SS_Datetime::now()->Rfc2822();
}
// Write ComponentSets as necessary

View File

@ -131,6 +131,10 @@ class Date extends DBField {
if($this->value) return date('r', strtotime($this->value));
}
function Rfc2822() {
if($this->value) return date('Y-m-d g:i:s', strtotime($this->value));
}
function Rfc3339() {
$timestamp = ($this->value) ? strtotime($this->value) : false;
if(!$timestamp) return false;