コード例 #1
0
ファイル: plugin.php プロジェクト: vortexacm/acmback
}
if (isset($_POST['activeform'])) {
    # verificar campos
    $this->vLoadClass($this->vconf['path'], "/vActions.phar/class.forms.php");
    # start new class
    $v = new forms();
    $v->classeErro = 'requestError';
    $falha[] = $v->validatorField('userCode', " + Digite o codigo da imagem");
    # check mail
    if (!empty($_POST['userMail'])) {
        $msgErro = $v->validatorMail('userMail', $this->strPut("Digite seu e-mail corretamente"));
        $falha[] = $v->validatorFieldSet('userMail', $msgErro);
    }
    # check pass valid
    if (!empty($_POST['userPass'])) {
        $msgErro = $v->validatorPassword($_POST['userPass'], 6, $this->strPut("Senha inválida. "));
        $falha[] = $v->validatorFieldSet('userPass', $msgErro);
    }
    # check pass e passtrue is equal
    if (!empty($_POST['userCode']) && isset($_SESSION['authValor'])) {
        $src = array("l", "o", "1", "g", "j");
        $dst = array("i", "0", "l", "6", "i");
        $pUserKey = str_replace($src, $dst, strtolower($_POST['userCode']));
        $pSessKey = str_replace($src, $dst, strtolower($_SESSION['authValor']));
        $msgErro = $v->validatorEqual($pSessKey, $pUserKey, $this->strPut("Código de segurança não confere"));
        $falha[] = $v->validatorFieldSet('userCode', $msgErro);
    }
    # check a valid captcha
    if (!isset($_SESSION['authValor'])) {
        $falha[] = $v->validatorFieldSet('authValor', "Chave de seguranca invalida");
    }