GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/JimMartinson/CST2146/VM_Data/Data_WWW/Student/JimMartinson/Lab07/includes/ |
Upload File : |
<?php /** * @file * Initializes the list of date formats and their locales. */ /** * Provides a default system list of date formats for system_date_formats(). */ function system_default_date_formats() { $formats = array(); // Short date formats. $formats[] = array( 'type' => 'short', 'format' => 'Y-m-d H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'short', 'format' => 'm/d/Y - H:i', 'locales' => array('en-us'), ); $formats[] = array( 'type' => 'short', 'format' => 'd/m/Y - H:i', 'locales' => array('en-gb', 'en-hk', 'en-ie', 'el-gr', 'es-es', 'fr-be', 'fr-fr', 'fr-lu', 'it-it', 'nl-be', 'pt-pt'), ); $formats[] = array( 'type' => 'short', 'format' => 'Y/m/d - H:i', 'locales' => array('en-ca', 'fr-ca', 'no-no', 'sv-se'), ); $formats[] = array( 'type' => 'short', 'format' => 'd.m.Y - H:i', 'locales' => array('de-ch', 'de-de', 'de-lu', 'fi-fi', 'fr-ch', 'is-is', 'pl-pl', 'ro-ro', 'ru-ru'), ); $formats[] = array( 'type' => 'short', 'format' => 'm/d/Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'short', 'format' => 'd/m/Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'short', 'format' => 'Y/m/d - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'short', 'format' => 'M j Y - H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'short', 'format' => 'j M Y - H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'short', 'format' => 'Y M j - H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'short', 'format' => 'M j Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'short', 'format' => 'j M Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'short', 'format' => 'Y M j - g:ia', 'locales' => array(), ); // Medium date formats. $formats[] = array( 'type' => 'medium', 'format' => 'D, Y-m-d H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'D, m/d/Y - H:i', 'locales' => array('en-us'), ); $formats[] = array( 'type' => 'medium', 'format' => 'D, d/m/Y - H:i', 'locales' => array('en-gb', 'en-hk', 'en-ie', 'el-gr', 'es-es', 'fr-be', 'fr-fr', 'fr-lu', 'it-it', 'nl-be', 'pt-pt'), ); $formats[] = array( 'type' => 'medium', 'format' => 'D, Y/m/d - H:i', 'locales' => array('en-ca', 'fr-ca', 'no-no', 'sv-se'), ); $formats[] = array( 'type' => 'medium', 'format' => 'F j, Y - H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'j F, Y - H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'Y, F j - H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'D, m/d/Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'D, d/m/Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'D, Y/m/d - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'F j, Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'j F Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'Y, F j - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'medium', 'format' => 'j. F Y - G:i', 'locales' => array(), ); // Long date formats. $formats[] = array( 'type' => 'long', 'format' => 'l, F j, Y - H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'long', 'format' => 'l, j F, Y - H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'long', 'format' => 'l, Y, F j - H:i', 'locales' => array(), ); $formats[] = array( 'type' => 'long', 'format' => 'l, F j, Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'long', 'format' => 'l, j F Y - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'long', 'format' => 'l, Y, F j - g:ia', 'locales' => array(), ); $formats[] = array( 'type' => 'long', 'format' => 'l, j. F Y - G:i', 'locales' => array(), ); return $formats; }