Use validators to verify input attributes
Nobody has claimed this yet.
- Dominant language
- PHP
- Stars
- 1
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
We should validate input attributes like pattern or minlength on the server side.
For that we could automatically assign the corresponding validators from IPL Validator (existing or new ones) to the element.
Example
The following example should get the ipl\Validator\BetweenValidator:
$this->addElement(
'number',
'example',
[
'label' => 'Example',
'min' => 1,
'max' => 5
]
);
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by tracing the addElement call shown in the example and reviewing the existing or new IPL Validator classes that correspond to input attributes such as pattern, minlength, min, and max. Done means supported attributes are automatically mapped to server-side validators, including assigning BetweenValidator for the example.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- php
- Domain
- backend
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100