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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. | Email View Folder
  15. |--------------------------------------------------------------------------
  16. |
  17. | The folder under resources/views where your email templates are found.
  18. |
  19. */
  20. 'email_view_folder' => null,
  21. /*
  22. |--------------------------------------------------------------------------
  23. | Send Email Job
  24. |--------------------------------------------------------------------------
  25. |
  26. | The class name of the job that will be used to send an email.
  27. |
  28. */
  29. 'send_email_job' => \Statamic\Forms\SendEmail::class,
  30. /*
  31. |--------------------------------------------------------------------------
  32. | Exporters
  33. |--------------------------------------------------------------------------
  34. |
  35. | Here you may define all the available form submission exporters.
  36. | You may customize the options within each exporter's array.
  37. |
  38. */
  39. 'exporters' => [
  40. 'csv' => [
  41. 'class' => Statamic\Forms\Exporters\CsvExporter::class,
  42. ],
  43. 'json' => [
  44. 'class' => Statamic\Forms\Exporters\JsonExporter::class,
  45. ],
  46. ],
  47. ];