system_date_time_lookup

Versions
6 – 7
system_date_time_lookup()

Return the date for a given format string via Ajax.

Code

modules/system/system.admin.inc, line 1626

<?php
function system_date_time_lookup() {
  $result = format_date(time(), 'custom', $_GET['format']);
  echo drupal_to_js($result);
  exit;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.