Giter Site home page Giter Site logo

f3-validate's Issues

Add Same Rule

Please Add Same Rule so Password and Password_confirmed work correctly.

Currently there is no same rule so validation can't match if both field contain same value

example of it usage should be same:password

error msg returns

in the getting started example

print_r($valid);
it returns this:
> The <span class="gump-field">Article Title</span> field is required

how do I make it output html and not this string with encoded html entities?
I've tried using html_entity_decode but it didn't change anything

errors keys from get_errors_array should not be uppercased

Not using the "original key" in the array of errors returned by function get_errors_array() is not a good idea.

This is not really user friendly when using it to display errors in f3 templates as we have to do a special treatment to match strings against input names.

Moreover, input fields names containing underscores or dash are replaced by spaces, this will prevent variable retrieving within templates.


From:

<input name="password" />
<span class="error text-danger">{{ @ERRORS.Password }}</span>

To:

<input name="password" />
<span class="error text-danger">{{ @ERRORS.password }}</span>

From:

<input name="password_verify" />
<span class="error text-danger">{{ @ERRORS.Password Verify }}</span>{* broken *}

To:

<input name="password" />
<span class="error text-danger">{{ @ERRORS.password_verify }}</span>

Regex validation mistake

public function validates, line 400.
it parses an expression by format: regex,/here exactly regex body/
but what's happen if the regex body has one or more comma as well ?

I offer changes:

                    if (($rv=strstr($rule, ',')) !== false) {
                        $rule   = explode(',', $rule);
                        $method = 'validate_'.$rule[0];
                        $param  = ltrim($rv,',');//$rule[1];
                        $rule   = $rule[0];
                    } else {
                        $method = 'validate_'.$rule;
                    }

or something better ))

and also mistake happens when used the char | at regex. It conflicts with delimiter |

Validator alpha_numeric in documentation

Just a small thing. In the Readme ist says "alpha_numeric" under Available Validators, but the validator under f3-validate/lib/validate.php is called "alphanumeric".

Publish on packagist?

I cannot find this package on https://packagist.org, may you publish it there? That would help for installing, maintaining it up to date, and we don't have to commit external packages in our vcs.

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.