Info Panel
Roll it!   ⇔
1 - Documantation
* Knowledge Base
  • Mvc
  • Application
  • Advanced
  • Operators
  • Api
* Origin Template
  • Customize
* Core Classes
* Classes

* all grey titles exists but not documented yet

Validation  validations for strings and arrays

Description: keep it simple

Validation of user inputs is very important to keep the system safe and sound. Validation is so important because without it, any client/user on the open web can crash the site/system. Validation role is to stop kinds of wrong inputs or even bad/evil one.

List of variables/parameters:

stringP $this->string;

typeP $this->type;

minLengthP $this->minLength;

maxLengthP $this->maxLength;

constraintP $this->constraint;

varNameP $this->varName;

errorOnValidateP $this->errorOnValidate;

List of methods/functions:

validate $validation->validate();

getCorrectLengthP $this->getCorrectLength();

validateLength $validation->validateLength();

isValidated $validation->isValidated();

validator $validation->validator();

validateEmailAddress $validation->validateEmailAddress();

Info Panel
Roll it!   ⇔