text4u
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

revisions.php 920B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Revisions
  6. |--------------------------------------------------------------------------
  7. |
  8. | Revisions must be enabled per-collection by adding `revisions: true` to
  9. | the collection's yaml file. Here you may disable revisions completely
  10. | in one go. This is useful for disabling revisions per environment.
  11. |
  12. */
  13. 'enabled' => env('STATAMIC_REVISIONS_ENABLED', false),
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Storage Path
  17. |--------------------------------------------------------------------------
  18. |
  19. | This is the directory where your revision files will be located. Within
  20. | here, they will be further organized into collection, site, ID, etc.
  21. |
  22. */
  23. 'path' => storage_path('statamic/revisions'),
  24. ];