system_date_format_types

7 system.module system_date_format_types()
8 system.module system_date_format_types()

Implements hook_date_format_types().

File

modules/system/system.module, line 3541
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'),
  );
}
Login or register to post comments