Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions config/statamic/system.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,28 @@

'addons_path' => base_path('addons'),

/*
|--------------------------------------------------------------------------
| Blueprints Path
|--------------------------------------------------------------------------
|
| Where your blueprint YAML files are stored.
|
*/

'blueprints_path' => resource_path('blueprints'),

/*
|--------------------------------------------------------------------------
| Fieldsets Path
|--------------------------------------------------------------------------
|
| Where your fieldset YAML files are stored.
|
*/

'fieldsets_path' => resource_path('fieldsets'),

/*
|--------------------------------------------------------------------------
| Send the Powered-By Header
Expand Down Expand Up @@ -74,6 +96,35 @@

'date_format' => 'F jS, Y',

/*
|--------------------------------------------------------------------------
| Timezone
|--------------------------------------------------------------------------
|
| Statamic will use this timezone when displaying dates on the front-end.
| You can use any timezone supported by PHP. When set to null it will
| fall back to the timezone defined in your `app.php` config file.
|
| https://www.php.net/manual/en/timezones.php
|
*/

'display_timezone' => null,

/*
|--------------------------------------------------------------------------
| Localize Dates in Modifiers
|--------------------------------------------------------------------------
|
| When using date-related modifiers, Carbon instances will be in UTC.
| Enabling this setting will ensure that dates get localized into
| the timezone defined in `display_timezone`. Otherwise you'll
| need to manually localize dates in all of your templates.
|
*/

'localize_dates_in_modifiers' => false,

/*
|--------------------------------------------------------------------------
| Default Character Set
Expand Down