Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
0929be64
Commit
0929be64
authored
Apr 12, 2007
by
meus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed broken docs
parent
c110ca4c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
122 deletions
+11
-122
Advanced components - Validators - List of predefined validators.php
...mponents - Validators - List of predefined validators.php
+11
-122
No files found.
manual/docs/Advanced components - Validators - List of predefined validators.php
View file @
0929be64
Here
is
a
list
of
predefined
validators
.
You
cannot
use
these
names
for
your
custom
validators
.
<
table
width
=
"500"
>
<
tr
>
<
td
>
<
b
>
name
</
b
>
</
td
>
<
td
>
<
b
>
arguments
</
b
>
</
td
>
<
td
>
<
b
>
task
</
b
>
</
td
>
</
tr
>
<
tr
>
<
td
>
email
</
td
>
<
td
>
</
td
>
<
td
>
Checks
if
value
is
valid
email
.
</
td
>
</
tr
>
<
tr
>
<
td
>
notblank
</
td
>
<
td
>
</
td
>
<
td
>
Checks
if
value
is
not
blank
.
</
td
>
</
tr
>
<
tr
>
<
td
>
notnull
</
td
>
<
td
>
</
td
>
<
td
>
Checks
if
value
is
not
null
.
</
td
>
</
tr
>
<
tr
>
<
td
>
country
</
td
>
<
td
>
</
td
>
<
td
>
Checks
if
value
is
valid
country
code
.
</
td
>
</
tr
>
<
tr
>
<
td
>
ip
</
td
>
<
td
>
</
td
>
<
td
>
Checks
if
value
is
valid
internet
protocol
address
.
</
td
>
</
tr
>
<
tr
>
<
td
>
htmlcolor
</
td
>
<
td
>
</
td
>
<
td
>
Checks
if
value
is
valid
html
color
.
</
td
>
</
tr
>
<
tr
>
<
td
>
nospace
</
td
>
<
td
>
</
td
>
<
td
>
Checks
if
value
has
no
space
chars
.
</
td
>
</
tr
>
<
tr
>
<
td
>
range
</
td
>
<
td
>
[
min
,
max
]
</
td
>
<
td
>
Checks
if
value
is
in
range
specified
by
arguments
.
</
td
>
</
tr
>
<
tr
>
<
td
>
unique
</
td
>
<
td
>
</
td
>
<
td
>
Checks
if
value
is
unique
in
its
database
table
.
</
td
>
</
tr
>
<
tr
>
<
td
>
regexp
</
td
>
<
td
>
[
expression
]
</
td
>
<
td
>
Checks
if
value
matches
a
given
regexp
.
</
td
>
</
tr
>
</
table
>
||
**
name
**
||
**
arguments
**
||
**
task
**
||
||
email
||
||
Check
if
value
is
valid
email
.||
||
notblank
||
||
Check
if
value
is
not
blank
.||
||
notnull
||
||
Check
if
value
is
not
null
.||
||
country
||
||
Check
if
valid
is
valid
country
code
.||
||
ip
||
||
Checks
if
value
is
valid
IP
(
internet
protocol
)
address
.||
||
htmlcolor
||
||
Checks
if
value
is
valid
html
color
.||
||
nospace
||
||
Check
if
value
has
no
space
chars
.
||
||
range
||
[
min
,
max
]
||
Checks
if
value
is
in
range
specified
by
arguments
.||
||
unique
||
||
Checks
if
value
is
unique
in
its
database
table
.
||
||
regexp
||
[
expression
]
||
Check
if
valie
matches
a
given
regexp
.
||
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment