dev-master
9999999-devEnhanced Validation for Craft CMS Contact Form Plugin
MIT
The Requires
by isev ltd
yii2 cms craftcms
0.0.1
0.0.1.0Enhanced Validation for Craft CMS Contact Form Plugin
MIT
The Requires
by isev ltd
yii2 cms craftcms
 Wallogit.com
                    
                    2017 © Pedro Peláez
                         Wallogit.com
                    
                    2017 © Pedro Peláez
                    
                    
                    
                    
                
                
            
Enhanced Validation for Craft CMS Contact Form Plugin
Simple server-side contact form validation for the Craft CMS 3 Contact Form plugin using GUMP., (*1)
Add the package to your composer.json file, (*2)
"isev-ltd/contact-form-validation": "~0.0.1"
or install via command line, (*3)
composer require isev-ltd/contact-form-validation:0.0.*
Go to your Craft CMS 3 admin area Settings. Under System click Plugins., (*4)
Install Contact Form if you haven't already. Then install Contact Form Validation., (*5)
Go back to Settings. Under Plugins go to Contact Form and make sure that your to email is added., (*6)
Create a config file named config/contact-form-validation.php, (*7)
Add validate, filter, and readableNames keys to the returned array. Below is an example config file., (*8)
<?php
return [
    'validate' => [
        'fromName' => 'required',
        'fromEmail' => 'required|valid_email',
        'phoneNumber' => 'required',
        'body' => 'required',
    ],
    'filter' => [
        'fromName' => 'trim',
        'fromEmail' => 'trim|sanitize_email',
        'phoneNumber' => 'trim',
        'body' => 'trim',
    ],
    'readableNames' => [
        'phoneNumber' => 'phone number',
        'fromEmail' => 'email',
        'fromName' => 'name',
        'body' => 'enquiry',
    ]
];
Note that, fromName, fromEmail, and subject are the default fields. Any other field will be within the message array, as with the Contact Form plugin., (*9)
The below form omits the default subject field, and adds a phone number. Because the phone number is custom, the message field is changed to message[body]. Using the example config file all fields are required, and email needs to be an email address., (*10)
    {% macro errorList(errors) %}
        {% if errors %}
Currently this plugin only supports GUMP for validation, see the associated Github documentation for what's possible., (*11)