Skip to content

Instantly share code, notes, and snippets.

@bratsun
Created March 1, 2016 09:16
Show Gist options
  • Save bratsun/5336c10e93d1ec30402a to your computer and use it in GitHub Desktop.
Save bratsun/5336c10e93d1ec30402a to your computer and use it in GitHub Desktop.
Field formatter for German date output
$output = '';
foreach ($variables['#items'] as $item) {
setlocale(LC_TIME, 'de_DE', 'de_DE.UTF-8');
$output .= strftime('%e %B %G', $item['value']);
}
return $output;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment