Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use validators to verify input attributes #145

Open
jrauh01 opened this issue Mar 24, 2025 · 0 comments
Open

Use validators to verify input attributes #145

jrauh01 opened this issue Mar 24, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@jrauh01
Copy link
Contributor

jrauh01 commented Mar 24, 2025

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
    ]
);
@jrauh01 jrauh01 added the enhancement New feature or request label Mar 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant