You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
944 B
46 lines
944 B
<?php
|
|
/**
|
|
* Part of the Fuel framework.
|
|
*
|
|
* @package Fuel
|
|
* @version 1.8
|
|
* @author Fuel Development Team
|
|
* @license MIT License
|
|
* @copyright 2010 - 2016 Fuel Development Team
|
|
* @link http://fuelphp.com
|
|
*/
|
|
|
|
/**
|
|
* NOTICE:
|
|
*
|
|
* If you need to make modifications to the default configuration, copy
|
|
* this file to your app/config folder, and make them in there.
|
|
*
|
|
* This will allow you to upgrade fuel without losing your custom config.
|
|
*/
|
|
|
|
return array(
|
|
|
|
/**
|
|
* A couple of named patterns that are often used
|
|
*/
|
|
'patterns' => array(
|
|
'local' => '%c',
|
|
|
|
'mysql' => '%Y-%m-%d %H:%M:%S',
|
|
'mysql_date' => '%Y-%m-%d',
|
|
|
|
'us' => '%m/%d/%Y',
|
|
'us_short' => '%m/%d',
|
|
'us_named' => '%B %d %Y',
|
|
'us_full' => '%I:%M %p, %B %d %Y',
|
|
'eu' => '%d/%m/%Y',
|
|
'eu_short' => '%d/%m',
|
|
'eu_named' => '%d %B %Y',
|
|
'eu_full' => '%H:%M, %d %B %Y',
|
|
|
|
'24h' => '%H:%M',
|
|
'12h' => '%I:%M %p',
|
|
),
|
|
);
|