Skip to main content
Version: 2023.3

Date Editable

Configuration

NameTypeDescription
formatstringA string which describes how to format the date in editmode, see possible formats
outputFormatstringA string which describes how to format the date in frontend, see possible formats
classstringA CSS class that is added to the surrounding container of this element in editmode

Methods

NameReturnDescription
isEmpty()booleanWhether the editable is empty or not

Simple Example

The following code will create a simple date widget in editmode. In frontend it will format the date as defined in format.

Localization (output-format, ...) is automatically used from the globally registered locale. Please read the topic Localization.

{{ pimcore_date('myDate', {
'format': 'd.m.Y',
'outputFormat': '%d.%m.%Y'
})
}}