Implements hook_date_format_types().

File

modules/system/system.module, line 3619
Configuration system that lets administrators modify the workings of the site.

Code

function system_date_format_types() {
  return array(
    'long' => t('Long'),
    'medium' => t('Medium'),
    'short' => t('Short'),
  );
}