frozzare/wp-forms

Create forms in using code in WordPress

Fund package maintenance!
www.buymeacoffee.com/frozzare

Installs: 2 979

Dependents: 0

Suggesters: 0

Security: 0

Stars: 11

Watchers: 2

Forks: 2

Open Issues: 3

Type:wordpress-plugin

dev-master 2017-08-23 13:34 UTC

This package is auto-updated.

Last update: 2024-03-26 00:32:57 UTC


README

Requires PHP 5.6 and WordPress 4.3

Create forms in using code in WordPress.

Installation

composer require frozzare/wp-forms

Example

// Add custom field.
forms()
    ->add_field( 'custom', function ( $attributes ) {
        return sprintf( '<p><input type="text" name="%s" /></p>', $attributes['name'] );
    } );

// Add form.
forms()
    ->add( 'contact', [
        'name'  => [
            'label' => 'Name',
            'rules' => 'required|max:250'
        ],
        'email'  => [
            'label' => 'Email',
            'type'  => 'email',
            'rules' => 'required|email'
        ],
        'custom' => [
            'label' => 'Custom',
            'type'  => 'custom'
        ],
        'text'   => [
            'label' => 'Text',
            'type'  => 'textarea'
        ],
        'color'  => [
            'label' => 'Select color',
            'type'  => 'select',
            'items' => [
                [
                    'text'  => 'Blue',
                    'value' => 'blue',
                ],
                [
                    'text'  => 'Green',
                    'value' => 'green'
                ]
            ]
        ]
    ] )
    ->button( 'Send' )
    ->save( function ( array $data ) {
        // Do something with the data...

        // Return true if you will save or email the data yourself
        // otherwise false to save in forms data post type.
        return false;
    } );

// Get errors.
$errors = forms()->errors( 'contact ');

// Render form.
forms()
    ->render( 'contact' );

Save form with ajax

Example

$('.form-submit').on('click', function (e) {
    e.preventDefault();

    $.post('/forms-ajax/?action=save&form=contact', $('form').serialize(), function (res) {
        // res.success is true or false
        // res.errors contains all errors if any.
    });
});

Validation rules

alpha, alpha_num, array, between, bool, digit, email, float, int,
ip, min, max, numeric, required, size, string, url

Contributing

Everyone is welcome to contribute with patches, bug-fixes and new features.

License

MIT © Fredrik Forsmo