Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

I need CMS DateField to only show date, not time.


Go to End


2 Posts   1460 Views

Avatar
micahsheets

Community Member, 165 Posts

30 August 2009 at 11:59am

Edited: 30/08/2009 12:02pm

If I have a $db 'Date' => 'Date' and then in getCMSFields() I have new DateField('Date'), it shows the date and time. I want it to only show the date because there is no time needed.

Note: I just noticed that the Database field type was datetime so I changed it to date and that fixed the issue.

Avatar
Martijn

Community Member, 271 Posts

30 August 2009 at 1:32pm

Edited: 30/08/2009 1:36pm

But still sometimes you want to store date in datetime format, but in one situation only display them in DD-MM-YYYY and in another situation in DD-MM-YYYY HH:MM.

I couldn't find any SS build in solution, so I think creating a method in your controller will fix the issue:

function Nicedate(){
	$datetime = new DateTime($this->YourDateTimeField); // >= php 5.2
	return $datetime->format('jS, F Y'); // or d-m-Y
}