function system_date_time_lookup
Same name and namespace in other branches
- 7.x drupal-7.x/modules/system/system.admin.inc \system_date_time_lookup()
Return the date for a given format string via Ajax.
1 string reference to 'system_date_time_lookup'
- system_menu in drupal-6.x/
modules/ system/ system.module - Implementation of hook_menu().
Archivo
- drupal-6.x/
modules/ system/ system.admin.inc, line 1648 - Admin page callbacks for the system module.
Código
function system_date_time_lookup() {
$result = format_date(time(), 'custom', $_GET['format']);
drupal_json($result);
}