Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 646 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 646 Bytes

Validation for ProcessWire

This module provides a set of useful validation methods.

Example Usage

$conf = array(
  'username' => array('isEmpty', 'isUnique' => array('ident' => 'name', 'sanitize' => 'username')),
  'pass' => array('range' => array('min' => 6, 'max' => 20))
);

$validator = new Validator;
$validator->setConfig($conf);
if (!$validator->isValid()) $errors = $validator->getErrors();

Read more!

The Guides