You are here

function panopoly_core_date_formats in Panopoly Core 7

Implements hook_date_formats().

File

./panopoly_core.module, line 259

Code

function panopoly_core_date_formats() {
  $formats = array();
  $formats[] = array(
    'type' => 'panopoly_time',
    'format' => 'g:ia',
    'locales' => array(),
  );
  $formats[] = array(
    'type' => 'panopoly_day',
    'format' => 'F j, Y',
    'locales' => array(),
  );
  return $formats;
}