-
Notifications
You must be signed in to change notification settings - Fork 0
/
EnviarDeletarRev.php
58 lines (44 loc) · 1.29 KB
/
EnviarDeletarRev.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
<?php
include("conexao.php");
include_once("functions.php");
if(ProtegePag() == true){
if( ($_SESSION['acesso'] == 1) || ($_SESSION['acesso'] == 2)){
$CadUserOnline = $_SESSION['id'];
$ArvoreAdminOnline = ArvoreRev($CadUserOnline);
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$id = (isset($_POST['id'])) ? $_POST['id'] : '';
if(empty($id)){
echo MensagemAlerta('Erro', 'Como você fez isso?', "danger");
}
elseif(!in_array($id, $ArvoreAdminOnline)) {
echo MensagemAlerta('Erro', 'Este usuário não pertence a você!', "danger");
}
else{
$ArvoreRev = ArvoreRev($id);
if(!empty($ArvoreRev)){
for($i = 0; $i < count($ArvoreRev); $i++){
$ExcluirSSHUser = ExcluirSSHUser($ArvoreRev[$i]);
$ExcluirPorUsuario = ExcluirPorUsuario($ArvoreRev[$i]);
}
}
//Deletar Usuário
$ExcluirPorUsuario = ExcluirPorUsuario($id);
$SQL = "DELETE FROM login WHERE id = :id";
$SQL = $banco->prepare($SQL);
$SQL->bindParam(':id', $id, PDO::PARAM_INT);
$SQL->execute();
if(empty($SQL)){
echo MensagemAlerta('Erro', 'Ocorreu um erro ao deletar o usuário', "danger");
}
else{
echo MensagemAlerta('Sucesso', 'Usuário deletado com sucesso', "success", "index.php?p=revendedor");
}
}
}
}else{
echo Redirecionar('index.php');
}
}else{
echo Redirecionar('login.php');
}
?>