Skip to content

Instantly share code, notes, and snippets.

@bueckl
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bueckl/4a9a80e7f5890c5013d3 to your computer and use it in GitHub Desktop.
Save bueckl/4a9a80e7f5890c5013d3 to your computer and use it in GitHub Desktop.
Format Date in CMS #SilverStripe
public function getNiceCreated() {
return $this->obj('Created')->FormatI18N('%d.%m.%Y');
}
public function getNiceEventDate() {
$Event = $this->Invoice()->Event();
return $Event->dbObject('EndDate')->FormatI18N('%d.%m.%Y');
}
Or in Template!
$Date.FormatI18N('%e.%m.%Y')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment