Set up a fresh Statamic site
This commit is contained in:
57
config/statamic/forms.php
Normal file
57
config/statamic/forms.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Forms Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Where your form YAML files are stored.
|
||||
|
|
||||
*/
|
||||
|
||||
'forms' => resource_path('forms'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Email View Folder
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The folder under resources/views where your email templates are found.
|
||||
|
|
||||
*/
|
||||
|
||||
'email_view_folder' => null,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Send Email Job
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The class name of the job that will be used to send an email.
|
||||
|
|
||||
*/
|
||||
|
||||
'send_email_job' => \Statamic\Forms\SendEmail::class,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Exporters
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define all the available form submission exporters.
|
||||
| You may customize the options within each exporter's array.
|
||||
|
|
||||
*/
|
||||
|
||||
'exporters' => [
|
||||
'csv' => [
|
||||
'class' => Statamic\Forms\Exporters\CsvExporter::class,
|
||||
],
|
||||
'json' => [
|
||||
'class' => Statamic\Forms\Exporters\JsonExporter::class,
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user