TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,29 @@
.. include:: /Includes.rst.txt
.. _feature-68022:
=============================================================
Feature: #68022 - Added base date attribute to DateViewHelper
=============================================================
See :issue:`68022`
Description
===========
The DateViewHelper has been improved with an optional attribute named `base`.
The attribute can be used to define a base-date when using a relative time specification for `date`.
If `date` is a `DateTime` object, `base` is ignored.
The possible relative date format specification can be found in:
http://www.php.net/manual/en/datetime.formats.relative.php
.. code-block:: html
<f:format.date format="Y" base="{dateObject}">-1 year</f:format.date>
This will result in the output `2016` assuming the `dateObject` is some date in 2017.
.. index:: Fluid