mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fixed and documented SS_Datetime methods that returned formatted date/times.
This commit is contained in:
parent
e9f3073fc9
commit
dad10b99f4
@ -54,24 +54,41 @@ class SS_Datetime extends Date implements TemplateGlobalProvider {
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the date in the raw SQL-format, e.g. “2006-01-18 16:32:04”
|
||||
* Returns the date and time (in 12-hour format) using the format string 'd/m/Y g:ia' e.g. '31/01/2014 2:23pm'.
|
||||
* @return string Formatted date and time.
|
||||
*/
|
||||
public function Nice() {
|
||||
if($this->value) return $this->Format('d/m/Y g:ia');
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the date and time (in 24-hour format) using the format string 'd/m/Y H:i' e.g. '28/02/2014 13:32'.
|
||||
* @return string Formatted date and time.
|
||||
*/
|
||||
public function Nice24() {
|
||||
if($this->value) return $this->Format('d/m/Y H:i');
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the date using the format string 'd/m/Y' e.g. '28/02/2014'.
|
||||
* @return string Formatted date.
|
||||
*/
|
||||
public function Date() {
|
||||
if($this->value) return $this->Format('d/m/Y');
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the time in 12-hour format using the format string 'g:ia' e.g. '1:32pm'.
|
||||
* @return string Formatted time.
|
||||
*/
|
||||
public function Time() {
|
||||
if($this->value) return $this->Format('g:ia');
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the time in 24-hour format using the format string 'H:i' e.g. '13:32'.
|
||||
* @return string Formatted time.
|
||||
*/
|
||||
public function Time24() {
|
||||
if($this->value) return $this->Format('H:i');
|
||||
}
|
||||
@ -82,6 +99,12 @@ class SS_Datetime extends Date implements TemplateGlobalProvider {
|
||||
DB::requireField($this->tableName, $this->name, $values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the url encoded date and time in ISO 6801 format using format
|
||||
* string 'Y-m-d%20H:i:s' e.g. '2014-02-28%2013:32:22'.
|
||||
*
|
||||
* @return string Formatted date and time.
|
||||
*/
|
||||
public function URLDatetime() {
|
||||
if($this->value) return $this->Format('Y-m-d%20H:i:s');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user