Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 2.16 KB

10_Date.md

File metadata and controls

32 lines (23 loc) · 2.16 KB

Date Editable

Configuration

Name Type Description
format string A string which describes how to format the date in editmode and frontend (when outputFormat/outputIsoFormat is not defined), see possible formats
outputFormat string Deprecated: A string which describes how to format the date in frontend, see possible formats
outputIsoFormat string A string which describes how to format the date in frontend, see possible formats
class string A CSS class that is added to the surrounding container of this element in editmode

Methods

Name Return Description
isEmpty() boolean Whether 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 outputIsoFormat.

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

{{ pimcore_date("myDate", {
    "format": "d.m.Y",
    "outputIsoFormat": "DD.MM.YYYY"
}) }}