function system_date_format_types

7.x system.module system_date_format_types()

Implements hook_date_format_types().

File

drupal-7.x/modules/system/system.module, line 3543
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'),
  );
}