diff --git a/config/statamic/system.php b/config/statamic/system.php index 4510ad9..5525279 100644 --- a/config/statamic/system.php +++ b/config/statamic/system.php @@ -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 @@ -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