| 6 system.admin.inc | system_date_time_lookup() |
| 7 system.admin.inc | system_date_time_lookup() |
| 8 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'
File
- modules/
system/ system.admin.inc, line 2178 - Admin page callbacks for the system module.
Code
function system_date_time_lookup() {
$result = format_date(REQUEST_TIME, 'custom', $_GET['format']);
drupal_json_output($result);
}
Login or register to post comments