text4u
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

forms.php 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Forms Path
  6. |--------------------------------------------------------------------------
  7. |
  8. | Where your form YAML files are stored.
  9. |
  10. */
  11. 'forms' => resource_path('forms'),
  12. /*
  13. |--------------------------------------------------------------------------
  14. | Submissions Path
  15. |--------------------------------------------------------------------------
  16. |
  17. | Where your form submissions are stored.
  18. |
  19. */
  20. 'submissions' => storage_path('forms'),
  21. /*
  22. |--------------------------------------------------------------------------
  23. | Email View Folder
  24. |--------------------------------------------------------------------------
  25. |
  26. | The folder under resources/views where your email templates are found.
  27. |
  28. */
  29. 'email_view_folder' => null,
  30. /*
  31. |--------------------------------------------------------------------------
  32. | Send Email Job
  33. |--------------------------------------------------------------------------
  34. |
  35. | The class name of the job that will be used to send an email.
  36. |
  37. */
  38. 'send_email_job' => \Statamic\Forms\SendEmail::class,
  39. /*
  40. |--------------------------------------------------------------------------
  41. | CSV Export Delimiter
  42. |--------------------------------------------------------------------------
  43. |
  44. | Statamic will use this character as delimiter for csv exports.
  45. |
  46. */
  47. 'csv_delimiter' => ',',
  48. ];