-
Notifications
You must be signed in to change notification settings - Fork 0
/
MisRecetas.php
201 lines (180 loc) · 6.49 KB
/
MisRecetas.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?php
include_once 'bd/conexion.php';
if (!session_id()) @session_start();
if(isset($_SESSION['conectado'])){
$usuarioLogueado = $_SESSION['conectado'];
if($usuarioLogueado == null){
header("Location: Login.php");
}
}
else{
header("Location: Login.php");
}
?>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"/>
<script src="bootstrap/js/jquery-3.2.1.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<style>
.textonegrita{
font-weight:700;
}
.sangriaizq{
margin-left: 60px;
}
.sangriacolumnas{
border-bottom: 1px solid lightgray;
margin-left: 1px;
margin-top: 2px;
}
.espacioBoton{
margin-bottom: 6px;
}
.bordeGris{
border-bottom: 1px solid lightgray;
}
.espacioBtnEliminar{
margin-right: 5px;
}
.labelError{
color: red;
font-weight:700;
}
.black{
background: black;
}
</style>
<style type="text/css">
* {
margin:0px;
padding:0px;
}
#header {
margin:auto;
width:100%;
font-family:Arial, Helvetica, sans-serif;
}
ul, ol {
list-style:none;
}
.nav > li {
float:left;
}
.nav li a {
background-color:#000;
color:#fff;
text-decoration:none;
padding:10px 12px;
display:block;
}
.nav li a:hover {
background-color:#434343;
}
.nav li ul {
display:none;
position:absolute;
min-width:140px;
}
.nav li:hover > ul {
display:block;
}
.nav li ul li {
position:relative;
}
.nav li ul li ul {
right:-140px;
top:0px;
}
</style>
<script>
$(document).ready(function (e) {
$(document).on('click', '.btnEditar', function () {
var id = $(this).attr('id');
window.location.href = "EditarReceta.php?idReceta="+id;
});
$(document).on('click', '.btnVer', function () {
var id = $(this).attr('id');
window.location.href = "VerReceta.php?idReceta=" + id;
});
$(document).on('click', '.btnEliminar', function () {
var id = $(this).attr('id');
//verificar eliminacion de solo mis recetas
console.log(id);
var mensaje = confirm("¿Estar Seguro de Eliminar?");
if (mensaje) {
$.ajax({
method: "POST",
url: "Receta.php",
data: { idReceta: id },
success: function (resp) {
console.log(resp);
window.location.href = "MisRecetas.php";
}
});
}
});
});
</script>
</head>
<div class="container">
<div id="header">
<ul class="nav black">
<?php
if($usuarioLogueado!=null){
if($usuarioLogueado['Administrador']==1){
echo '<li><a href="R_E_Ingredientes.php">Ingredientes</a></li>';
echo '<li><a href="RegistroUsuario.php">Registrar Administradores</a></li>';
}
echo '<li><a href="ModificarUsuario.php">Mi Perfil</a></li>';
echo '<li><a href="CrearReceta.php">Crear Receta</a></li>';
echo '<li><a href="MisRecetas.php">Mis Recetas</a></li>';
echo '<li><a href="RankingRecetas.php">Ranking</a></li>';
echo '<li><a href="CambiarClave.php">Cambiar Clave</a></li>';
echo '<li><a href="CerrarSesion.php">Cerrar Sesion</a></li>';
}
else{
echo '<li><a href="Login.php">Login</a></li>';
echo '<li><a href="RegistroUsuario.php">Registrarse</a></li>';
}
?>
</ul>
</div>
<div class="row " id="ListadeRecetasUsuario">
<div class="row encabezado ">
<div class="col-md-1">NombreReceta</div>
<div class="col-md-1">Calificacion</div>
</div>
<br>
<?php
$idUsuario=$usuarioLogueado['idUsuario'];
$recetas = seleccionarRecetasUsuario($idUsuario);
foreach ($recetas as $receta) {
$idReceta=$receta['idReceta'];
$calificaciones= CalificacionesReceta($idReceta);
$contador=0;
if($calificaciones!=null){
foreach($calificaciones as $calificacion){
$cont=$calificacion['Calificacion'];
$contador=$contador+$cont;
}
}
$PromedioCalificacionReceta=$contador/(sizeof($calificaciones)+1);
echo "<div class='row'>";
echo "<div class='col-md-1'>" . $receta['NombreReceta'] . "</div>";
echo "<div class='col-md-1'>" . round($PromedioCalificacionReceta). "</div>";
echo "<div class='col-md-3'>";
echo"<div class='col-md-3 bordeGris espacioBoton btn btn-xs btn-danger btnEliminar' id=" . $receta['idReceta'] .">Eliminar</div>";
echo"<div class='col-md-3 bordeGris espacioBoton btn btn-xs btn-danger btnEditar' id=" . $receta['idReceta'] .">Editar</div>";
echo"<div class='col-md-3 bordeGris espacioBoton btn btn-xs btn-danger btnVer' id=" . $receta['idReceta'] .">Ver</div>";
echo "</div>";
echo "</div>";
echo "<br>";
}
?>
</div>
</div>
</html>