You are here

function cms_events_date_formats in Glazed CMS Events 7

File

./cms_events.module, line 23

Code

function cms_events_date_formats() {
  $formats = array();

  // Short date formats.
  $formats[] = array(
    'type' => 'cms_events_month_year',
    'format' => 'F Y',
    'locales' => array(),
  );
  $formats[] = array(
    'type' => 'cms_events_month_day',
    'format' => 'M d',
    'locales' => array(),
  );
  return $formats;
}