PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 4.3.19
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v4.3.19
6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 3.6.66 All 195 releases
fluentform / config / app.php

app.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 4.3.19, at config/app.php

35 lines 956 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 return array(
4 'env' => 'production',
5 'providers' => array(
6 'core' => array(
7 'FluentForm\Framework\Foundation\AppProvider',
8 'FluentForm\Framework\Config\ConfigProvider',
9 'FluentForm\App\Providers\FluentValidatorProvider',
10 'FluentForm\Framework\Request\RequestProvider',
11 'FluentForm\Framework\View\ViewProvider',
12 ),
13 'plugin' => array(
14
15 'common' => array(
16 'FluentForm\App\Providers\CommonProvider',
17 'FluentForm\App\Providers\FormBuilderProvider',
18 'FluentForm\App\Providers\WpFluentProvider',
19 'FluentForm\App\Providers\FluentConversationalProvider',
20 ),
21
22 'backend' => array(
23 'FluentForm\App\Providers\BackendProvider',
24 'FluentForm\App\Providers\MenuProvider',
25 'FluentForm\App\Providers\AdminNoticeProvider',
26 'FluentForm\App\Providers\MigratorProvider',
27 ),
28
29 'frontend' => array(
30 'FluentForm\App\Providers\FrontendProvider',
31 ),
32 ),
33 ),
34 );
35