-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnviarOpcoesRev.php
76 lines (58 loc) · 2.03 KB
/
EnviarOpcoesRev.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
include("conexao.php");
include_once("functions.php");
if(ProtegePag() == true){
if( ($_SESSION['acesso'] == 1) || ($_SESSION['acesso'] == 2)){
$CadUser = $_SESSION['id'];
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$rev = (isset($_POST['rev'])) ? $_POST['rev'] : '';
$camposMarcados = (isset($_POST['camposMarcados'])) ? $_POST['camposMarcados'] : '';
$status = (isset($_POST['status'])) ? $_POST['status'] : '';
if(empty($camposMarcados)){
echo MensagemAlerta('Erro', 'Como você fez isso? Ocorreu um erro, por favor, tente mais tarde!', "danger");
}
elseif(empty($status)){
echo MensagemAlerta('Erro', 'Qual o Status? Ocorreu um problema, por favor, tente mais tarde!', "danger");
}
else{
for($i = 0; $i < count($camposMarcados); $i++){
if( $status == "alterarrev" ){
$SQL = "UPDATE login SET
id_cad = :id_cad
WHERE id = :id";
$SQL = $banco->prepare($SQL);
$SQL->bindParam(':id_cad', $rev, PDO::PARAM_INT);
$SQL->bindParam(':id', $camposMarcados[$i], PDO::PARAM_INT);
$SQL->execute();
}
elseif( $status == "excluirall" ){
$ArvoreRev = ArvoreRev($camposMarcados[$i]);
if(!empty($ArvoreRev)){
for($is = 0; $is < count($ArvoreRev); $is++){
$ExcluirSSHUser = ExcluirSSHUser($ArvoreRev[$is]);
$ExcluirPorUsuario = ExcluirPorUsuario($ArvoreRev[$is]);
}
}
//Deletar Usuário
$ExcluirPorUsuario = ExcluirPorUsuario($camposMarcados[$i]);
$SQL = "DELETE FROM login WHERE id = :id";
$SQL = $banco->prepare($SQL);
$SQL->bindParam(':id', $camposMarcados[$i], PDO::PARAM_INT);
$SQL->execute();
}
}
if(empty($SQL)){
echo MensagemAlerta('Erro', 'Ocorreu um erro, por favor, procure o administrador!', "danger", "index.php?p=revendedor");
}
else{
echo MensagemAlerta('Sucesso', 'Realizado com sucesso', "success", "index.php?p=revendedor");
}
}
}
}else{
echo Redirecionar('index.php');
}
}else{
echo Redirecionar('login.php');
}
?>