コード例 #1
0
ファイル: index.php プロジェクト: stamlercas/csa
} else {
    switch ($action) {
        case 'SecurityLogin':
            include '../security/login_form.php';
            break;
        case 'SecurityProcessLogin':
            ProcessLogin();
            break;
        case 'SecurityLogOut':
            ProcessLogOut();
            break;
        case 'SecurityManageUsers':
            ManageUsers();
            break;
        case 'SecurityUserAdd':
            UserAdd();
            break;
        case 'SecurityUserEdit':
            UserEdit();
            break;
        case 'SecurityUserDelete':
            UserDelete();
            break;
        case 'SecurityProcessUserAddEdit':
            ProcessUserAddEdit();
            break;
        case 'SecurityManageFunctions':
            ManageFunctions();
            break;
        case 'SecurityFunctionAdd':
            FunctionAdd();
コード例 #2
0
ファイル: AddUser.php プロジェクト: adanwaky/practica1
<?php

//CONTROLADOR PARA AÑADIR UN USUARIO EN LA BASE DE DATOS
include_once "Funciones.php";
include_once MOD . 'users.php';
$errores = [];
//Array donde almacenamos los errores si hubiese
$HayError = false;
if (!$_POST) {
    include_once VIEW . 'AnadirUsuario.php';
} else {
    ErrorGuardarUser($errores, $HayError);
    if ($HayError) {
        //Datos introducidos incorrectos
        include_once VIEW . 'AnadirUsuario.php';
    } else {
        $datos = array('nombre' => $_POST['nombre'], 'password' => sha1($_POST['password']), 'tipo' => $_POST['tipo']);
        UserAdd($datos);
        //Añade el usuario
        header("Location: index.php?page=ListaUser");
        //Muestra la lista
    }
}