| @@ -34,8 +34,9 @@ | ||
| 34 | 34 | 'FluentForm\\App\\Http\\Controllers\\GlobalSettingsController' => $baseDir . '/app/Http/Controllers/GlobalSettingsController.php', |
| 35 | 35 | 'FluentForm\\App\\Http\\Controllers\\IntegrationManagerController' => $baseDir . '/app/Http/Controllers/IntegrationManagerController.php', |
| 36 | 36 | 'FluentForm\\App\\Http\\Controllers\\LogController' => $baseDir . '/app/Http/Controllers/LogController.php', |
| 37 | 37 | 'FluentForm\\App\\Http\\Controllers\\ManagersController' => $baseDir . '/app/Http/Controllers/ManagersController.php', |
| 38 | + 'FluentForm\\App\\Http\\Controllers\\McpSettingsController' => $baseDir . '/app/Http/Controllers/McpSettingsController.php', | |
| 38 | 39 | 'FluentForm\\App\\Http\\Controllers\\ReportController' => $baseDir . '/app/Http/Controllers/ReportController.php', |
| 39 | 40 | 'FluentForm\\App\\Http\\Controllers\\RolesController' => $baseDir . '/app/Http/Controllers/RolesController.php', |
| 40 | 41 | 'FluentForm\\App\\Http\\Controllers\\SubmissionController' => $baseDir . '/app/Http/Controllers/SubmissionController.php', |
| 41 | 42 | 'FluentForm\\App\\Http\\Controllers\\SubmissionHandlerController' => $baseDir . '/app/Http/Controllers/SubmissionHandlerController.php', |
| @@ -102,8 +103,26 @@ | ||
| 102 | 103 | 'FluentForm\\App\\Modules\\Form\\TokenBasedSpamProtection' => $baseDir . '/app/Modules/Form/TokenBasedSpamProtection.php', |
| 103 | 104 | 'FluentForm\\App\\Modules\\Form\\Transfer' => $baseDir . '/app/Modules/Form/Transfer.php', |
| 104 | 105 | 'FluentForm\\App\\Modules\\HCaptcha\\HCaptcha' => $baseDir . '/app/Modules/HCaptcha/HCaptcha.php', |
| 105 | 106 | 'FluentForm\\App\\Modules\\Logger\\DataLogger' => $baseDir . '/app/Modules/Logger/DataLogger.php', |
| 107 | + 'FluentForm\\App\\Modules\\MCP\\AbilitiesRegistrar' => $baseDir . '/app/Modules/MCP/AbilitiesRegistrar.php', | |
| 108 | + 'FluentForm\\App\\Modules\\MCP\\MCPInit' => $baseDir . '/app/Modules/MCP/MCPInit.php', | |
| 109 | + 'FluentForm\\App\\Modules\\MCP\\Support\\ErrorCodes' => $baseDir . '/app/Modules/MCP/Support/ErrorCodes.php', | |
| 110 | + 'FluentForm\\App\\Modules\\MCP\\Support\\FormAccess' => $baseDir . '/app/Modules/MCP/Support/FormAccess.php', | |
| 111 | + 'FluentForm\\App\\Modules\\MCP\\Support\\FormCreator' => $baseDir . '/app/Modules/MCP/Support/FormCreator.php', | |
| 112 | + 'FluentForm\\App\\Modules\\MCP\\Support\\MCPHelper' => $baseDir . '/app/Modules/MCP/Support/MCPHelper.php', | |
| 113 | + 'FluentForm\\App\\Modules\\MCP\\Support\\Mutation' => $baseDir . '/app/Modules/MCP/Support/Mutation.php', | |
| 114 | + 'FluentForm\\App\\Modules\\MCP\\Support\\PaymentDataProvider' => $baseDir . '/app/Modules/MCP/Support/PaymentDataProvider.php', | |
| 115 | + 'FluentForm\\App\\Modules\\MCP\\Support\\PermissionGate' => $baseDir . '/app/Modules/MCP/Support/PermissionGate.php', | |
| 116 | + 'FluentForm\\App\\Modules\\MCP\\Support\\WriteGuard' => $baseDir . '/app/Modules/MCP/Support/WriteGuard.php', | |
| 117 | + 'FluentForm\\App\\Modules\\MCP\\Tools\\ContextTools' => $baseDir . '/app/Modules/MCP/Tools/ContextTools.php', | |
| 118 | + 'FluentForm\\App\\Modules\\MCP\\Tools\\FieldTools' => $baseDir . '/app/Modules/MCP/Tools/FieldTools.php', | |
| 119 | + 'FluentForm\\App\\Modules\\MCP\\Tools\\FormTools' => $baseDir . '/app/Modules/MCP/Tools/FormTools.php', | |
| 120 | + 'FluentForm\\App\\Modules\\MCP\\Tools\\IntegrationTools' => $baseDir . '/app/Modules/MCP/Tools/IntegrationTools.php', | |
| 121 | + 'FluentForm\\App\\Modules\\MCP\\Tools\\NotificationTools' => $baseDir . '/app/Modules/MCP/Tools/NotificationTools.php', | |
| 122 | + 'FluentForm\\App\\Modules\\MCP\\Tools\\ReportTools' => $baseDir . '/app/Modules/MCP/Tools/ReportTools.php', | |
| 123 | + 'FluentForm\\App\\Modules\\MCP\\Tools\\StylingTools' => $baseDir . '/app/Modules/MCP/Tools/StylingTools.php', | |
| 124 | + 'FluentForm\\App\\Modules\\MCP\\Tools\\SubmissionTools' => $baseDir . '/app/Modules/MCP/Tools/SubmissionTools.php', | |
| 106 | 125 | 'FluentForm\\App\\Modules\\Payments\\AjaxEndpoints' => $baseDir . '/app/Modules/Payments/AjaxEndpoints.php', |
| 107 | 126 | 'FluentForm\\App\\Modules\\Payments\\Classes\\PaymentAction' => $baseDir . '/app/Modules/Payments/Classes/PaymentAction.php', |
| 108 | 127 | 'FluentForm\\App\\Modules\\Payments\\Classes\\PaymentEntries' => $baseDir . '/app/Modules/Payments/Classes/PaymentEntries.php', |
| 109 | 128 | 'FluentForm\\App\\Modules\\Payments\\Classes\\PaymentManagement' => $baseDir . '/app/Modules/Payments/Classes/PaymentManagement.php', |
| @@ -142,11 +161,13 @@ | ||
| 142 | 161 | 'FluentForm\\App\\Modules\\Payments\\TransactionShortcodes' => $baseDir . '/app/Modules/Payments/TransactionShortcodes.php', |
| 143 | 162 | 'FluentForm\\App\\Modules\\ProcessExteriorModule' => $baseDir . '/app/Modules/ProcessExteriorModule.php', |
| 144 | 163 | 'FluentForm\\App\\Modules\\ReCaptcha\\ReCaptcha' => $baseDir . '/app/Modules/ReCaptcha/ReCaptcha.php', |
| 145 | 164 | 'FluentForm\\App\\Modules\\Registerer\\AdminBar' => $baseDir . '/app/Modules/Registerer/AdminBar.php', |
| 165 | + 'FluentForm\\App\\Modules\\Registerer\\CaptchaKeyNotice' => $baseDir . '/app/Modules/Registerer/CaptchaKeyNotice.php', | |
| 146 | 166 | 'FluentForm\\App\\Modules\\Registerer\\Menu' => $baseDir . '/app/Modules/Registerer/Menu.php', |
| 147 | 167 | 'FluentForm\\App\\Modules\\Registerer\\MigrationNotice' => $baseDir . '/app/Modules/Registerer/MigrationNotice.php', |
| 148 | 168 | 'FluentForm\\App\\Modules\\Registerer\\ReviewQuery' => $baseDir . '/app/Modules/Registerer/ReviewQuery.php', |
| 169 | + 'FluentForm\\App\\Modules\\Registerer\\StripeKeyNotice' => $baseDir . '/app/Modules/Registerer/StripeKeyNotice.php', | |
| 149 | 170 | 'FluentForm\\App\\Modules\\Registerer\\TranslationString' => $baseDir . '/app/Modules/Registerer/TranslationString.php', |
| 150 | 171 | 'FluentForm\\App\\Modules\\Renderer\\GlobalSettings\\Settings' => $baseDir . '/app/Modules/Renderer/GlobalSettings/Settings.php', |
| 151 | 172 | 'FluentForm\\App\\Modules\\Report\\ReportHandler' => $baseDir . '/app/Modules/Report/ReportHandler.php', |
| 152 | 173 | 'FluentForm\\App\\Modules\\SubmissionHandler\\SubmissionHandler' => $baseDir . '/app/Modules/SubmissionHandler/SubmissionHandler.php', |
| @@ -191,12 +212,14 @@ | ||
| 191 | 212 | 'FluentForm\\App\\Services\\FormBuilder\\Components\\TermsAndConditions' => $baseDir . '/app/Services/FormBuilder/Components/TermsAndConditions.php', |
| 192 | 213 | 'FluentForm\\App\\Services\\FormBuilder\\Components\\Text' => $baseDir . '/app/Services/FormBuilder/Components/Text.php', |
| 193 | 214 | 'FluentForm\\App\\Services\\FormBuilder\\Components\\TextArea' => $baseDir . '/app/Services/FormBuilder/Components/TextArea.php', |
| 194 | 215 | 'FluentForm\\App\\Services\\FormBuilder\\Components\\Turnstile' => $baseDir . '/app/Services/FormBuilder/Components/Turnstile.php', |
| 216 | + 'FluentForm\\App\\Services\\FormBuilder\\DateConfigPolicy' => $baseDir . '/app/Services/FormBuilder/DateConfigPolicy.php', | |
| 195 | 217 | 'FluentForm\\App\\Services\\FormBuilder\\EditorShortCode' => $baseDir . '/app/Services/FormBuilder/EditorShortCode.php', |
| 196 | 218 | 'FluentForm\\App\\Services\\FormBuilder\\EditorShortcodeParser' => $baseDir . '/app/Services/FormBuilder/EditorShortcodeParser.php', |
| 197 | 219 | 'FluentForm\\App\\Services\\FormBuilder\\FormBuilder' => $baseDir . '/app/Services/FormBuilder/FormBuilder.php', |
| 198 | 220 | 'FluentForm\\App\\Services\\FormBuilder\\GroupSetterProxy' => $baseDir . '/app/Services/FormBuilder/GroupSetterProxy.php', |
| 221 | + 'FluentForm\\App\\Services\\FormBuilder\\LegacyDateConfigDecoder' => $baseDir . '/app/Services/FormBuilder/LegacyDateConfigDecoder.php', | |
| 199 | 222 | 'FluentForm\\App\\Services\\FormBuilder\\NotificationParser' => $baseDir . '/app/Services/FormBuilder/NotificationParser.php', |
| 200 | 223 | 'FluentForm\\App\\Services\\FormBuilder\\Notifications\\EmailNotification' => $baseDir . '/app/Services/FormBuilder/Notifications/EmailNotification.php', |
| 201 | 224 | 'FluentForm\\App\\Services\\FormBuilder\\Notifications\\EmailNotificationActions' => $baseDir . '/app/Services/FormBuilder/Notifications/EmailNotificationActions.php', |
| 202 | 225 | 'FluentForm\\App\\Services\\FormBuilder\\RatingIcon' => $baseDir . '/app/Services/FormBuilder/RatingIcon.php', |
| @@ -398,8 +421,18 @@ | ||
| 398 | 421 | 'FluentForm\\Framework\\Foundation\\Concerns\\DynamicFacadeTrait' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Concerns/DynamicFacadeTrait.php', |
| 399 | 422 | 'FluentForm\\Framework\\Foundation\\Concerns\\FoundationTrait' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Concerns/FoundationTrait.php', |
| 400 | 423 | 'FluentForm\\Framework\\Foundation\\Concerns\\HooksRemovalTrait' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Concerns/HooksRemovalTrait.php', |
| 401 | 424 | 'FluentForm\\Framework\\Foundation\\Config' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Config.php', |
| 425 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\BadGatewayHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/BadGatewayHttpException.php', | |
| 426 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\BadRequestHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/BadRequestHttpException.php', | |
| 427 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\ExceptionHandler' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/ExceptionHandler.php', | |
| 428 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\ForbiddenHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/ForbiddenHttpException.php', | |
| 429 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\HttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/HttpException.php', | |
| 430 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\NotFoundHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/NotFoundHttpException.php', | |
| 431 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\ServiceUnavailableHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/ServiceUnavailableHttpException.php', | |
| 432 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\TooManyRequestsHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/TooManyRequestsHttpException.php', | |
| 433 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\UnauthorizedHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/UnauthorizedHttpException.php', | |
| 434 | + 'FluentForm\\Framework\\Foundation\\Exceptions\\UnprocessableEntityHttpException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Exceptions/UnprocessableEntityHttpException.php', | |
| 402 | 435 | 'FluentForm\\Framework\\Foundation\\ForbiddenException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/ForbiddenException.php', |
| 403 | 436 | 'FluentForm\\Framework\\Foundation\\Policy' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/Policy.php', |
| 404 | 437 | 'FluentForm\\Framework\\Foundation\\RequestGuard' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/RequestGuard.php', |
| 405 | 438 | 'FluentForm\\Framework\\Foundation\\UnAuthorizedException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Foundation/UnAuthorizedException.php', |
| @@ -467,8 +500,9 @@ | ||
| 467 | 500 | 'FluentForm\\Framework\\Support\\ItemNotFoundException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/ItemNotFoundException.php', |
| 468 | 501 | 'FluentForm\\Framework\\Support\\JsonableInterface' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/JsonableInterface.php', |
| 469 | 502 | 'FluentForm\\Framework\\Support\\LazyCollection' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/LazyCollection.php', |
| 470 | 503 | 'FluentForm\\Framework\\Support\\Locale' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Locale.php', |
| 504 | + 'FluentForm\\Framework\\Support\\MBString\\Mbstring' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/MBString/Mbstring.php', | |
| 471 | 505 | 'FluentForm\\Framework\\Support\\MacroableTrait' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/MacroableTrait.php', |
| 472 | 506 | 'FluentForm\\Framework\\Support\\Mail' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Mail.php', |
| 473 | 507 | 'FluentForm\\Framework\\Support\\MathException' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/MathException.php', |
| 474 | 508 | 'FluentForm\\Framework\\Support\\Media' => $vendorDir . '/wpfluent/framework/src/WPFluent/Support/Media.php', |