您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Debugbar
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here you may specify whether the Antlers profiler should be added
  9. | to the Laravel Debugbar. This is incredibly useful for finding
  10. | performance impacts within any of your Antlers templates.
  11. |
  12. */
  13. 'debugbar' => env('STATAMIC_ANTLERS_DEBUGBAR', true),
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Guarded Variables
  17. |--------------------------------------------------------------------------
  18. |
  19. | Any variable pattern that appears in this list will not be allowed
  20. | in any Antlers template, including any user-supplied values.
  21. |
  22. */
  23. 'guardedVariables' => [
  24. 'config.app.key',
  25. ],
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Guarded Tags
  29. |--------------------------------------------------------------------------
  30. |
  31. | Any tag pattern that appears in this list will not be allowed
  32. | in any Antlers template, including any user-supplied values.
  33. |
  34. */
  35. 'guardedTags' => [
  36. ],
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Guarded Modifiers
  40. |--------------------------------------------------------------------------
  41. |
  42. | Any modifier pattern that appears in this list will not be allowed
  43. | in any Antlers template, including any user-supplied values.
  44. |
  45. */
  46. 'guardedModifiers' => [
  47. ],
  48. ];