Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
fluentform
/
app
/
Modules
/
Form
/
Settings
/
Validator
:
Validator.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace FluentForm\App\Modules\Form\Settings\Validator; class Validator { /** * Centralized validator for all the settings data. * * @param $key * @param array $data */ public static function validate($key, $data = []) { $key = ucwords($key); $class = '\FluentForm\App\Modules\Form\Settings\Validator\\' . $key; if (class_exists($class)) { /** * Validator class * * @var $class Confirmations|MailChimps|Notifications|Pdfs */ $class::validate($data); } } }