Skip to content

Instantly share code, notes, and snippets.

@kedramon
Created May 19, 2020 08:30
Show Gist options
  • Save kedramon/9b31fba59a552e9b2abbc2256d0c71e0 to your computer and use it in GitHub Desktop.
Save kedramon/9b31fba59a552e9b2abbc2256d0c71e0 to your computer and use it in GitHub Desktop.
Date field rendered as custom date field using view options array.
<?php
$options = [
'label' => 'inline',
'settings' => ['date_format' => 'd.m.Y'],
'type' => 'datetime_custom',
];
$date = $entity->get('field_date')->view($options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment