= Examples = {dateObject} 1980-12-13 (depending on the current date) {dateObject} 01:23 (depending on the current time) +1 week 2 days 4 hours 2 seconds 13.12.1980 - 21:03:42 (depending on the current time, see http://www.php.net/manual/en/function.strtotime.php) @{someTimestamp} 13.12.1980 - 21:03:42 (depending on the current time. Don't forget the "@" in front of the timestamp see http://www.php.net/manual/en/function.strtotime.php) {f:format.date(date: dateObject)} 1980-12-13 (depending on the value of {dateObject}) {dateObject -> f:format.date()} 1980-12-13 (depending on the value of {dateObject}) {dateObject -> f:format.date(localeFormatType: 'date', forceLocale: true)} 13.12.1980 (depending on the value of {dateObject} and the current locale) {dateObject -> f:format.date(forceLocale: 'de_DE')} 13.12.1980 11:15:42 (depending on the value of {dateObject})
Наследование: extends Neos\FluidAdaptor\Core\ViewHelper\AbstractLocaleAwareViewHelper
 /**
  * @test
  * @expectedException \Neos\FluidAdaptor\Core\ViewHelper\Exception
  */
 public function viewHelperThrowsExceptionIfDateStringCantBeParsed()
 {
     $viewHelper = new Format\DateViewHelper();
     $viewHelper->render('foo');
 }