当前位置: 首页>>代码示例>>PHP>>正文


PHP renderizar函数代码示例

本文整理汇总了PHP中renderizar函数的典型用法代码示例。如果您正苦于以下问题:PHP renderizar函数的具体用法?PHP renderizar怎么用?PHP renderizar使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了renderizar函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: run

function run()
{
    $userName = "";
    $returnUrl = "";
    $errores = array();
    if (isset($_POST["btnLogin"])) {
        $userName = $_POST["txtUser"];
        $pswd = $_POST["txtPswd"];
        $returnUrl = $_POST["returnUrl"];
        $usuario = obtenerUsuario($userName)[0];
        if ($usuario) {
            $salt = "pimienta";
            $pswd = $pswd . $salt;
            $pswd = md5($pswd);
            if ($usuario["usuariopwd"] == $pswd) {
                mw_setEstaLogueado($userName, true);
                header("Location:index.php" . $_POST["returnUrl"]);
                die;
            } else {
                $errores[] = array("errmsg" => "Credenciales Incorrectas");
            }
        } else {
            $errores[] = array("errmsg" => "Credenciales Incorrectas");
        }
    }
    if (isset($_GET["returnUrl"])) {
        $returnUrl = urldecode($_GET["returnUrl"]);
    }
    //si llega aqui algo sucedio asi que hay que rendizar nuevamente el login
    $datos = array("txtUser" => $userName, "returnUrl" => $returnUrl, "mostrarErrores" => count($errores) > 0, "errores" => $errores);
    renderizar("login", $datos);
}
开发者ID:aetherage,项目名称:Github-Aetherage,代码行数:32,代码来源:login.control.php

示例2: run

function run()
{
    $htmlData = array();
    $htmlData["mostrarErrores"] = false;
    $htmlData["errores"] = array();
    $htmlData["txtUserName"] = "";
    $htmlData["txtEmail"] = "";
    $htmlData["txtName"] = "";
    if (isset($_POST["btnRegister"])) {
        $htmlData["txtUserName"] = $_POST["txtUserName"];
        $htmlData["txtEmail"] = $_POST["txtEmail"];
        $htmlData["txtName"] = $_POST["txtName"];
        $pswd = $_POST["txtPswd"];
        $pswdCnf = $_POST["txtPswdCnf"];
        if ($pswd == $pswdCnf) {
            //seguir proceso de registro
            // verificar que el usuario no exista previamente
            $checkUser = obtenerUsuario($htmlData["txtUserName"]);
            if (count($checkUser) > 0) {
                $htmlData["mostrarErrores"] = true;
                $htmlData["errores"][] = array("errmsg" => "Nombre de Usuario ya Usado!");
            } else {
                $pswdSalted = "";
                $pswdSalted = $pswd . "pimienta";
                $pswdSalted = md5($pswdSalted);
                insertCliente($htmlData["txtUserName"], $htmlData["txtName"], $htmlData["txtEmail"], $pswdSalted);
            }
        } else {
            $htmlData["mostrarErrores"] = true;
            $htmlData["errores"][] = array("errmsg" => "Contraseñas no coinciden");
        }
    }
    renderizar("registro", $htmlData);
}
开发者ID:aetherage,项目名称:Github-Aetherage,代码行数:34,代码来源:registro.control.php

示例3: run

function run()
{
    if (isset($_POST["btnLogin"])) {
        $correo = $_POST['email'];
        $Contrasenia = $_POST['password'];
        $estado = verificacionDeUsuario($correo);
        if (compararDatos($correo, $Contrasenia)) {
            $rol = obtenerRol($correo);
            if ($estado == 'ACT') {
                mw_setEstaLogueado($correo, true, $rol);
                redirectToUrl("index.php?page=home");
            } else {
                $errores[] = array("errmsg" => "Usuario Inactivo");
                redirectWithMessage("Su Cuenta de Usuario se encuentra Inactiva, Enviar mensaje para reactivacion de cuenta", "index.php?page=contactus");
            }
        } else {
            $errores[] = array("errmsg" => "Usuario o Contraseña Incorrecta");
            redirectWithMessage("Error Usuario o Contrasenia Incorrecta", "index.php?page=home");
        }
    }
    if (isset($_POST["btnSignOut"])) {
        mw_setEstaLogueado("", false, "");
        redirectToUrl("index.php?page=home");
    }
    renderizar("home", array());
}
开发者ID:josewfiallos,项目名称:boimcoWeb,代码行数:26,代码来源:home.control.php

示例4: run

function run()
{
    //if(mw_estaLogueado()){
    $facturas = array();
    $facturas = obtenerfacturas();
    renderizar("facturas", array("facturas" => $facturas));
}
开发者ID:aetherage,项目名称:Github-Aetherage,代码行数:7,代码来源:facturas.control.php

示例5: login

 public static function login()
 {
     session_start();
     if ($_SERVER['REQUEST_METHOD'] === 'POST') {
         $email = $_POST['email'];
         $password = $_POST['password'];
         $uc = new UtilizadorControlador();
         $utilizador = Utilizador::novo();
         $utilizador->setEmail($email);
         $utilizador->setPassword($password);
         $utilizadorAutenticado = $uc->autenticar($utilizador);
         if ($utilizadorAutenticado) {
             $_SESSION['id'] = $utilizadorAutenticado->id();
             if ($uc->eDocente($utilizadorAutenticado)) {
                 $_SESSION['tipo'] = 'SIGNO_USER_TYPE:0';
             } else {
                 $_SESSION['tipo'] = 'SIGNO_USER_TYPE:1';
             }
             header('location:/index.php/' . $utilizadorAutenticado->utilizador());
         } else {
             $erros = array('Utilizador ou senha incorrectos');
             $title = 'x';
             renderizar('login/index');
         }
     } else {
         if (!isset($_SESSION['id']) && !isset($_SESSION['tipo'])) {
             renderizar('login/index');
         } else {
             self::home();
         }
     }
 }
开发者ID:edsonmichaque,项目名称:signo,代码行数:32,代码来源:SessaoControlador.php

示例6: run

function run()
{
    $htmlData = array();
    $htmlData["mostrarErrores"] = false;
    $htmlData["errores"] = array();
    $htmlData["txtNombre"] = "";
    $htmlData["txtemail"] = "";
    if (isset($_POST["btnInsert"])) {
        $htmlData["email"] = $_POST["txtemail"];
        $htmlData["nombre"] = $_POST["txtNombre"];
        $htmlData["pwd"] = $_POST["txtPWD"];
        $htmlData["cpwd"] = $_POST["txtCPWD"];
        if ($htmlData["pwd"] == $htmlData["cpwd"]) {
            $checkUser = obtenerUsuario($htmlData["email"]);
            if (count($checkUser[0]) == 7) {
                $htmlData["mostrarErrores"] = true;
                $htmlData["errores"][] = array("errmsg" => "Correo Electrónico ya Usado!");
            } else {
                $fchingreso = time();
                //date("YmdHisu"); //20141104203730069785
                $pswdSalted = md5($htmlData["pwd"]);
                guardarUsuario($htmlData["email"], $htmlData["nombre"], $pswdSalted, $fchingreso);
            }
        } else {
            $htmlData["mostrarErrores"] = true;
            $htmlData["errores"][] = array("errmsg" => "Contraseñas no coinciden");
        }
    }
    renderizar("registrar", $htmlData);
}
开发者ID:aetherage,项目名称:Github-Aetherage,代码行数:30,代码来源:registrar.control.php

示例7: run

function run()
{
    if (isset($_POST["btnAñadir"])) {
        if ($_POST["action"] == "upload") {
            $tamano = $_FILES["imgSelect"]['size'];
            $tipo = $_FILES["imgSelect"]['type'];
            $archivo = $_FILES["imgSelect"]['name'];
            $datos = array();
            $datos["nombre"] = $_POST["newNombreProducto"];
            $datos["precio"] = $_POST["newPrecioUnitarioProducto"];
            $datos["cantidad"] = $_POST["newCantidadProducto"];
            $datos["estado"] = $_POST["newEstadoProducto"];
            $datos["imagen"] = "public/imgs/productos/{$archivo}";
            if ($archivo != "") {
                // guardamos el archivo a la carpeta files
                $destino = "C:/wamp/www/Proyecto/boimcoWeb/BoimcoMVC/public/imgs/productos/" . $archivo;
                copy($_FILES['imgSelect']['tmp_name'], $destino);
                insertarNuevoProducto($datos);
                redirectWithMessage("Producto Ingresado Exitosamente", "index.php?page=agregarProducto");
            }
        }
    }
    if (isset($_POST["btnSignOut"])) {
        mw_setEstaLogueado("", false, "");
        redirectToUrl("index.php?page=home");
    }
    renderizar("agregarProducto", array());
}
开发者ID:josewfiallos,项目名称:boimcoWeb,代码行数:28,代码来源:agregarProducto.control.php

示例8: run

function run()
{
    if (isset($_POST["btnSignOut"])) {
        mw_setEstaLogueado("", false, "");
        redirectToUrl("index.php?page=home");
    }
    renderizar("usuarioAdminVacio", array());
}
开发者ID:josewfiallos,项目名称:boimcoWeb,代码行数:8,代码来源:usuarioAdminVacio.control.php

示例9: run

function run()
{
    $datos_para_vista = array();
    $datos_para_vista["arr_menues"] = array();
    $datos_para_vista["arr_menues"][] = array("nom_combo" => "Combo 1 - Cuarto de Libra", "prc_combo" => 150.0, "enOferta" => true, "extras" => array(array("comp" => "Cuarto de Carne"), array("comp" => "Papas Medianas"), array("comp" => "Refresco de 16oz"), array("comp" => "Porción de Postre del día")));
    $datos_para_vista["arr_menues"][] = array("nom_combo" => "Combo 2 - Toropolada", "prc_combo" => 250.0, "enOferta" => false, "extras" => array(array("comp" => "Libra y Media de Res"), array("comp" => "Papas Extra Grande"), array("comp" => "Refresco de 24oz"), array("comp" => "Postre Completo")));
    renderizar("menu", $datos_para_vista);
}
开发者ID:aetherage,项目名称:Github-Aetherage,代码行数:8,代码来源:menu.control.php

示例10: run

function run()
{
    $htmlData["Cuenta"] = "";
    if (isset($_SESSION["userName"])) {
        $htmlData["Cuenta"] = $_SESSION["userName"];
    }
    $htmlData["servidores"] = registros();
    renderizar("mostrar", $htmlData);
}
开发者ID:aetherage,项目名称:Github-Aetherage,代码行数:9,代码来源:mostrar.control.php

示例11: run

function run()
{
    $htmlData["Cuenta"] = "";
    if (isset($_SESSION["userName"])) {
        $htmlData["Cuenta"] = $_SESSION["userName"];
    }
    $htmlData["productos"] = obtenerProductos();
    renderizar("mostrarproducto", $htmlData);
}
开发者ID:aetherage,项目名称:Github-Aetherage,代码行数:9,代码来源:mostrarproducto.control.php

示例12: run

function run($errorLogin)
{
    $htmlData["errores"] = $errorLogin;
    $htmlData["Cuenta"] = "";
    if (isset($_SESSION["userName"])) {
        $htmlData["Cuenta"] = $_SESSION["userName"];
    }
    renderizar("home", $htmlData);
}
开发者ID:aetherage,项目名称:Github-Aetherage,代码行数:9,代码来源:home.control.php

示例13: run

function run()
{
    $imagen = array();
    $filtro = "";
    if (isset($_POST["btnBuscar"])) {
        $filtro = $_POST["buscarTxt"];
        $imagen = buscarProductos($filtro);
    } else {
        $imagen = obtenerProductos();
    }
    if (isset($_POST["btnLogin"])) {
        $correo = $_POST['email'];
        $Contrasenia = $_POST['password'];
        $estado = verificacionDeUsuario($correo);
        if ($estado == 'ACT') {
            if (compararDatos($correo, $Contrasenia)) {
                $rol = obtenerRol($correo);
                mw_setEstaLogueado($correo, true, $rol);
                if ($rol == 'CLT') {
                    redirectToUrl("index.php?page=productos");
                } else {
                    redirectToUrl("index.php?page=productos");
                }
            } else {
                $errores[] = array("errmsg" => "Usuario o Contraseña Incorrecta");
                redirectWithMessage("Error Usuario o Contraseña Incorrecta", "index.php?page=productos");
            }
        } else {
            $errores[] = array("errmsg" => "Usuario Inactivo");
            redirectWithMessage("Su Cuenta de Usuario se encuentra Inactiva, Enviar mensaje para reactivacion de cuenta", "index.php?page=contactus");
        }
    }
    if (isset($_POST["btnSignOut"])) {
        mw_setEstaLogueado("", false, "");
        redirectToUrl("index.php?page=productos");
    }
    if (isset($_POST["btnAgregar"])) {
        if ($_POST["cantidadProductosSeleccionados"] == 0) {
            redirectWithMessage("Asegurese de seleccionar una cantidad válida.", "index.php?page=productos");
        }
        if ($_SESSION["userLogged"] == true && $_SESSION["userRol"] == 'CLT') {
            agregarACarretilla($_POST["codigoProducto"], $_POST["cantidadProductosSeleccionados"]);
            disminuirStock($_POST["codigoProducto"], $_POST["cantidadProductosSeleccionados"]);
            redirectWithMessage("Su producto fue agregado exitosamente al carrito, Gracias", "index.php?page=productos");
        } else {
            if ($_SESSION["userLogged"] == true && $_SESSION["userRol"] == 'ADM') {
            } else {
                redirectWithMessage("Registrese o inicie sesion para poder agregar a Carrito", "index.php?page=productos");
            }
        }
    }
    //PASAR A DETALE PRODUCTO
    renderizar("productos", array("imagen" => $imagen, "buscar" => $filtro));
}
开发者ID:josewfiallos,项目名称:boimcoWeb,代码行数:54,代码来源:productos.control.php

示例14: run

function run()
{
    if (mw_estaLogueado()) {
        $datosARenderizar = array();
        if (isset($_GET["catecod"])) {
            $datosARenderizar["productos"] = obtenerProductosXCategoria($_GET["catecod"]);
        } else {
            $datosARenderizar["productos"] = obtenerProductos();
        }
        renderizar("productos", $datosARenderizar);
    } else {
        mw_redirectToLogin("page=productos");
    }
}
开发者ID:aetherage,项目名称:Github-Aetherage,代码行数:14,代码来源:productos.control.php

示例15: run

function run()
{
    //Agregar codigo aqui
    $productos = array();
    if (isset($_POST["btnIngresar"])) {
        $prddsc = $_POST["txtPrdDsc"];
        $ctgcod = $_POST["txtCtgCod"];
        $prdprc = $_POST["txtPrdPrc"];
        $prdstk = $_POST["txtPrdStk"];
        $prdest = $_POST["cmbPrdEst"];
        ingresarProducto($prddsc, $ctgcod, $prdprc, $prdstk, $prdest);
    } elseif (isset($_POST["btnActualizar"])) {
        $prddsc = $_POST["txtPrdDsc"];
        $ctgcod = $_POST["txtCtgCod"];
        $prdprc = $_POST["txtPrdPrc"];
        $prdstk = $_POST["txtPrdStk"];
        $prdest = $_POST["cmbPrdEst"];
        $prdcod = $_GET["cod"];
        actualizarProducto($prdcod, $prddsc, $ctgcod, $prdstk, $prdprc, $prdest);
    } elseif (isset($_POST["btnEliminar"])) {
        $prdcod = $_GET["cod"];
        eliminarProducto($prdcod);
    }
    if (isset($_GET["modo"])) {
        $modo = $_GET["modo"];
        switch ($modo) {
            case 'ACT':
                $producto = obtenerProducto($_GET["cod"]);
                echo $producto["prddsc"];
                $datos = array("actualizar" => 'ACT', "prdcod" => $producto["prdcod"], "prddsc" => $producto["prddsc"], "ctgcod" => $producto["ctgcod"], "prdstk" => $producto["prdstk"], "prdprc" => $producto["prdprc"], "prdest" => $producto["prdest"] == "INA" ? "ACT" : NULL);
                break;
            case 'INS':
                $datos = array("ingresar" => 'INS');
                break;
            case 'ELI':
                $producto = obtenerProducto($_GET["cod"]);
                $datos = array("eliminar" => 'ELI', "prdcod" => $producto["prdcod"], "prddsc" => $producto["prddsc"], "ctgcod" => $producto["ctgcod"], "prdstk" => $producto["prdstk"], "prdprc" => $producto["prdprc"], "prdest" => $producto["prdest"] == "INA" ? "ACT" : NULL);
                break;
        }
        renderizar("formularioProductos", $datos);
    } else {
        $productos = obtenerProductos();
        renderizar("productos", array("productos" => $productos));
    }
}
开发者ID:JosemaWalker,项目名称:TareaCategorias,代码行数:45,代码来源:productos.control.php


注:本文中的renderizar函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。