silverstripe-framework/docs/en/02_Developer_Guides/03_Forms/Field_types/02_DateField.md
Damian Mooyman 014f0d23ed
API Create SeparatedDateField
API Restrict allowed values parsed via DBDate::setValue
API Remove NumericField_Readonly
API Remove DBTime::Nice12 / Nice24
2017-02-15 11:07:58 +13:00

3.4 KiB

title: DateField summary: How to format and use the DateField class.

DateField

This FormField subclass lets you display an editable date, in a single text input field. It also provides a calendar date picker.

The following example will add a simple DateField to your Page, allowing you to enter a date manually.

mysite/code/Page.php

:::php
<?php

class Page extends SiteTree {

	private static $db = array(
		'MyDate' => 'Date',
	);

	public function getCMSFields() {
		$fields = parent::getCMSFields();
		
		$fields->addFieldToTab(
			'Root.Main',
			DateField::create('MyDate', 'Enter a date')
		);
		
		return $fields;
	} 
}	

Custom Date Format

A custom date format for a [api:DateField] can be provided through setDateFormat.

:::php
// will display a date in the following format: 31-06-2012
DateField::create('MyDate')->setDateFormat('dd-MM-yyyy'); 
The formats are based on [CLDR format](http://userguide.icu-project.org/formatparse/datetime).

Min and Max Dates

Sets the minimum and maximum allowed date values using the min and max configuration settings (in ISO format or strtotime()).

:::php
DateField::create('MyDate')
	->setMinDate('-7 days')
	->setMaxDate'2012-12-31')

Separate Day / Month / Year Fields

To display separate input fields for day, month and year separately you can use the DateFieldSeparated subclass`. HTML5 placeholders 'day', 'month' and 'year' are enabled by default.

:::php
DateFieldSeparated::create('MyDate');
Any custom date format settings will be ignored.

Calendar Picker

The following setting will add a Calendar to a single DateField, using the jQuery UI DatePicker widget.

:::php
DateField::create('MyDate')
	->setShowCalendar(true);

The jQuery date picker will support most custom locale formats (if left as default). If setting an explicit date format via setDateFormat() then the below table of supported characters should be used.

It is recommended to use numeric format, as MMM or MMMM month names may not always pass validation.

Constant xxxxx
d numeric day of the month (without leading zero)
dd numeric day of the month (with leading zero)
EEE dayname, abbreviated
EEEE dayname
M numeric month of the year (without leading zero)
MM numeric month of the year (with leading zero)
MMM monthname, abbreviated
MMMM monthname
y year (4 digits)
yy year (2 digits)
yyyy year (4 digits)

Formatting Hints

It's often not immediate apparent which format a field accepts, and showing the technical format (e.g. HH:mm:ss) is of limited use to the average user. An alternative is to show the current date in the desired format alongside the field description as an example.

:::php
$dateField = DateField::create('MyDate');

// Show long format as text below the field
$dateField->setDescription(_t(
    'FormField.Example',
     'e.g. {format}',
     [ 'format' =>  $dateField->getDateFormat() ]
));

// Alternatively, set short format as a placeholder in the field
$dateField->setAttribute('placeholder', $dateField->getDateFormat());
Fields scaffolded through [api:DataObject::scaffoldCMSFields()] automatically have a description attached to them.

API Documentation

  • [api:DateField]