123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
-
- return [
-
- /*
- |--------------------------------------------------------------------------
- | Debugbar
- |--------------------------------------------------------------------------
- |
- | Here you may specify whether the Antlers profiler should be added
- | to the Laravel Debugbar. This is incredibly useful for finding
- | performance impacts within any of your Antlers templates.
- |
- */
-
- 'debugbar' => env('STATAMIC_ANTLERS_DEBUGBAR', true),
-
- /*
- |--------------------------------------------------------------------------
- | Guarded Variables
- |--------------------------------------------------------------------------
- |
- | Any variable pattern that appears in this list will not be allowed
- | in any Antlers template, including any user-supplied values.
- |
- */
-
- 'guardedVariables' => [
- 'config.app.key',
- ],
-
- /*
- |--------------------------------------------------------------------------
- | Guarded Tags
- |--------------------------------------------------------------------------
- |
- | Any tag pattern that appears in this list will not be allowed
- | in any Antlers template, including any user-supplied values.
- |
- */
-
- 'guardedTags' => [
-
- ],
-
- /*
- |--------------------------------------------------------------------------
- | Guarded Modifiers
- |--------------------------------------------------------------------------
- |
- | Any modifier pattern that appears in this list will not be allowed
- | in any Antlers template, including any user-supplied values.
- |
- */
-
- 'guardedModifiers' => [
-
- ],
-
- ];
|