-
Notifications
You must be signed in to change notification settings - Fork 0
/
ScriptModalServerEditar.php
148 lines (122 loc) · 6.1 KB
/
ScriptModalServerEditar.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
include("conexao.php");
include_once("functions.php");
if(ProtegePag() == true){
if($_SESSION['acesso'] == 1){
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$id = (isset($_POST['id'])) ? trim($_POST['id']) : '';
$SQL = "SELECT * FROM servidor WHERE id = :id";
$SQL = $banco->prepare($SQL);
$SQL->bindParam(':id', $id, PDO::PARAM_STR);
$SQL->execute();
$Ln = $SQL->fetch();
$nome = $Ln['nome'];
$server = $Ln['server'];
$porta = $Ln['porta'];
$user = $Ln['user'];
$senha = $Ln['senha'];
$icone = $Ln['icone'];
$SQLImagem = "SELECT id, imagem FROM icone_perfil WHERE id != :id";
$SQLImagem = $banco->prepare($SQLImagem);
$SQLImagem->bindParam(':id', $icone, PDO::PARAM_STR);
$SQLImagem->execute();
$SQLImagem2 = "SELECT id, imagem FROM icone_perfil WHERE id = :id";
$SQLImagem2 = $banco->prepare($SQLImagem2);
$SQLImagem2->bindParam(':id', $icone, PDO::PARAM_STR);
$SQLImagem2->execute();
$LnImagem2 = $SQLImagem2->fetch();
$FotoPerfil2 = FotoPerfil($LnImagem2['imagem']);
echo "<div class=\"modal animated fadeIn\" id=\"EditarAdmin\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"smallModalHead\" aria-hidden=\"true\">
<div class=\"modal-dialog\">
<div class=\"modal-content\">
<div class=\"modal-header\">
<button type=\"button\" class=\"close\" data-dismiss=\"modal\"><span aria-hidden=\"true\">×</span><span class=\"sr-only\">Fechar</span></button>
<h4 class=\"modal-title\" id=\"smallModalHead\">Editar</h4>
</div>
<div class=\"modal-body form-horizontal form-group-separated\">
<form id=\"validate\" role=\"form\" class=\"AdicionarAdministrador form-horizontal\" action=\"javascript:MDouglasMS();\">
<div class=\"form-group\">
<label class=\"col-md-3 control-label\">Ícone de Perfil</label>
<div class=\"col-md-9\">
<select class=\"form-control select\" id=\"IconePerfil\" name=\"IconePerfil\">";
echo "<option data-content='<img src=\"".$FotoPerfil2."\" height=\"20\" width=\"20\">' value=\"".$LnImagem2['id']."\"></option>";
while($LnImagem = $SQLImagem->fetch()){
$FotoPerfil = FotoPerfil($LnImagem['imagem']);
echo "<option data-content='<img src=\"".$FotoPerfil."\" height=\"20\" width=\"20\">' value=\"".$LnImagem['id']."\"></option>";
}
echo "
</select>
</div>
</div>
<div class=\"form-group\">
<label class=\"col-md-3 control-label\">Nome</label>
<div class=\"col-md-9\">
<input value=\"".$nome."\" id=\"Nome\" name=\"Nome\" type=\"text\" class=\"validate[required] form-control\">
</div>
</div>
<div class=\"form-group\">
<label class=\"col-md-3 control-label\">Servidor</label>
<div class=\"col-md-9\">
<input value=\"".$server."\" id=\"Servidor\" name=\"Servidor\" type=\"text\" class=\"validate[required] form-control\">
</div>
</div>
<div class=\"form-group\">
<label class=\"col-md-3 control-label\">Porta</label>
<div class=\"col-md-9\">
<input value=\"".$porta."\" id=\"Porta\" name=\"Porta\" type=\"text\" class=\"validate[required] form-control\">
</div>
</div>
<div class=\"form-group\">
<label class=\"col-md-3 control-label\">Usuário</label>
<div class=\"col-md-9\">
<input value=\"".$user."\" id=\"Usuario\" name=\"Usuario\" type=\"text\" class=\"validate[required] form-control\">
</div>
</div>
<div class=\"form-group\">
<label class=\"col-md-3 control-label\">Senha</label>
<div class=\"col-md-9\">
<input value=\"".$senha."\" id=\"Senha\" name=\"Senha\" type=\"text\" class=\"validate[required] form-control\">
</div>
</div>
<input name=\"id\" id=\"id\" type=\"hidden\" value=\"".$id."\" />
</form>
</div>
<div class=\"modal-footer\">
<div id=\"StatusModal\"></div>
<button type=\"button\" class=\"SalvarAdicionar btn btn-danger\">Alterar</button>
<button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Fechar</button>
</div>
</div>
</div>
</div>";
?>
<script type='text/javascript' src='js/plugins/validationengine/languages/jquery.validationEngine-br.js'></script>
<script type='text/javascript' src='js/plugins/validationengine/jquery.validationEngine.js'></script>
<script type="text/javascript" src="js/plugins/bootstrap/bootstrap-select.js"></script>
<script type='text/javascript' src='js/plugins/maskedinput/jquery.maskedinput.min.js'></script>
<!-- START TEMPLATE -->
<script type="text/javascript" src="js/plugins.js"></script>
<!-- END TEMPLATE -->
<script>
$("#EditarAdmin").modal("show");
$(function(){
$("button.SalvarAdicionar").click(function() {
var Data = $(".AdicionarAdministrador").serialize();
panel_refresh($(".AdicionarAdministrador"));
$.post('EnviarEditarServer.php', Data, function(resposta) {
setTimeout(panel_refresh($(".AdicionarAdministrador")),500);
$("#StatusModal").html('');
$("#StatusGeral").append(resposta);
});
});
});
</script>
<?php
}
}else{
echo Redirecionar('index.php');
}
}else{
echo Redirecionar('login.php');
}
?>