Add some nice date formats (from r95772)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@98093 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-02-04 00:52:13 +00:00
parent 738737e258
commit afe433c9ab

View File

@ -75,12 +75,19 @@ class Date extends DBField {
/**
* Returns the date in the format 24 May 2006
* Returns the date in the format 24 December 2006
*/
function Long() {
if($this->value) return date('j F Y', strtotime($this->value));
}
/**
* Returns the date in the format 24 Dec 2006
*/
function Full() {
if($this->value) return date('j M Y', strtotime($this->value));
}
/**
* Return the date using a particular formatting string.
*
@ -328,4 +335,4 @@ class Date extends DBField {
}
}
?>
?>