PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 3.6.21
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v3.6.21
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 / app / Services / fluentvalidator / fluentvalidator.php

fluentvalidator.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 3.6.21, at app/Services/fluentvalidator/fluentvalidator.php

22 lines 502 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php defined('ABSPATH') or die;
2
3 /*
4 Plugin Name: Fluent Validator
5 Description: Fluent Validator WordPress Plugin to validate data.
6 Version: 1.0.0
7 Author:
8 Author URI:
9 Plugin URI:
10 License: GPLv2 or later
11 Text Domain: fluentvalidator
12 Domain Path: /resources/languages
13 */
14
15 require_once 'autoload.php';
16
17 if (! function_exists('fluentValidator')) {
18 function fluentValidator($data = [], $rules = [], $messages = []) {
19 return (new \FluentValidator\Validator($data, $rules, $messages));
20 }
21 }
22