PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 3.2.0
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v3.2.0
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 3.2.0, at config/app.php

33 lines 833 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 ),
20
21 'backend' => array(
22 'FluentForm\App\Providers\BackendProvider',
23 'FluentForm\App\Providers\MenuProvider',
24 'FluentForm\App\Providers\AdminNoticeProvider'
25 ),
26
27 'frontend' => array(
28 'FluentForm\App\Providers\FrontendProvider',
29 ),
30 ),
31 ),
32 );
33