-
Notifications
You must be signed in to change notification settings - Fork 0
/
comunidadd.php
133 lines (133 loc) · 5.06 KB
/
comunidadd.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
<?php
session_start();
include 'condb.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="prueba.css" />
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(e) {
$(".noticia:not(:first)").hide();
$(".preview").click(function(e) {
$(".noticia").hide();
$(".noticia:eq(" + $(this).index() + ")").show();
});
});
</script>
</head>
<body>
<div class="principal">
<div class="header">
<div class="logo"></div>
<div class="esq-sup-der"><?php if(isset($_SESSION['id'])) {?>><a href="logout.php">Logout</a><br /><img class="foto" src="usuarios/<?=$_SESSION['id']?>" /><br /><?=$_SESSION['nombre']?><?php } else { ?><a href="registro.php">Registrarte</a> | <a href="login.php">Iniciar sesion</a><?php } ?></div>
<div class="esq-inf-der"><form action="busqueda.php" method="get"><input type="text" id="buscar" name="q" placeholder="Buscar..." /><span class="lupa"></span></form></div>
</div>
<ul class="navegacion">
<li><a href="index.php">Home</a></li><li><a href="comunidadesv.php">Comunidades</a></li><li><a href="comunidadd.php">Comunidad</a></li><?php if(isset($_SESSION['id'])) { ?><li>Mi Perfil</li><li><a href="agregar.php">Subir Noticia</a></li><?php } ?>
</ul>
<div class="contenido">
<?php
if(isset($_SESSION['id'])) {
$result=$db->query("SELECT * FROM usuarios_comunidades WHERE id_comunidad={$_SESSION['comunidad']} AND id_usuario={$_SESSION['id']}");
$siguiendo = $result->num_rows == 1;
$fila=$result->fetch_assoc();
$admin = $siguiendo ? $fila['tipo'] == 0 : false;
?>
<div class="seguir"><a href="comunidades.php?accion=<?=$admin ? 'eliminar' : ($siguiendo ? 'dejar' : 'seguir')?>" class="seguir"><?=$admin ? 'Eliminar' : ($siguiendo ? 'Dejar' : 'Seguir')?> comunidad</a></div>
<?php
if($admin)
{
?>
<div class="usuarios"><h1>Usuarios siguiendo la comunidad</h1>
<?php
$result=$db->query("SELECT a.*,b.nombre,b.apellido FROM usuarios_comunidades a INNER JOIN usuarios b ON a.id_usuario=b.id WHERE a.id_comunidad={$_SESSION['comunidad']} AND tipo!=0");
while($fila=$result->fetch_assoc())
{
?>
<div><?=$fila['nombre'] . ' ' . $fila['apellido']?> <a href="comunidades.php?accion=quitar&usuario=<?=$fila['id_usuario']?>">Eliminar de la comunidad</a></div>
<?php
}
?>
</div>
<?php
}
} ?>
<h1 style="text-align:center;">Comunidad <?=$_SESSION['comunidadn']?></h1>
<ul class="pestanas">
<li class="selected">Noticias destacadas</li>
</ul>
<div class="noticias">
<?php
$result = $db->query("SELECT a.*,LENGTH(a.abstracto) AS tamano,SUBSTRING(a.abstracto,1,140) AS abstracto,b.nombre,b.apellido,b.id AS autor FROM noticias AS a INNER JOIN usuarios AS b ON a.id_usuario=b.id WHERE a.id_comunidad={$_SESSION['comunidad']} AND a.id_comunidad IS NOT NULL ORDER BY a.id DESC");
$todos = array();
while($fila=$result->fetch_assoc())
$todos[] = $fila;
?>
<div class="previews">
<?php
foreach($todos as $fila)
{
?>
<div class="preview"">
<img src="<?=file_exists("noticias/{$fila['id']}") ? "noticias/{$fila['id']}" : "comunidades/{$fila['id_comunidad']}"?>" />
<div class="titulo"><?=$fila['titulo']?></div>
</div>
<?php
}
?>
</div>
<div class="noticias-cont">
<?php
foreach($todos as $fila)
{
?>
<div class="noticia" id="not<?=$fila['id']?>" style="background-size:100% 100%; background-image:url(<?=file_exists("noticias/{$fila['id']}") ? "noticias/{$fila['id']}" : "comunidades/{$fila['id_comunidad']}"?>)">
<div style="position:absolute; bottom:0;">
<div class="abstracto"><?=$fila['abstracto']?></div>
<div class="autor">By <img src="usuarios/<?=$fila['autor']?>" /><?=$fila['nombre'] . ' ' . $fila['apellido']?></div>
<div class="completo"><a href="noticiac.php?id=<?=$fila['id']?>">Ver mas</a></div>
</div>
</div>
<?php
}
?>
</div>
</div>
</div>
<?php if(isset($_SESSION['id'])) { ?>
<div class="comunidades">
<p style="text-align:center;">Comunidades que sigues</p>
<?php
$result=$db->query("SELECT a.* FROM comunidades AS a INNER JOIN usuarios_comunidades AS b ON b.id_comunidad=a.id AND b.id_usuario={$_SESSION['id']}");
while($fila=$result->fetch_assoc())
{
?>
<div class="comunidad">
<a href="comunidades.php?accion=cambiar&id=<?=$fila['id']?>">
<img src="comunidades/<?=$fila['id']?>" />
<p><?=$fila['nombre']?></p>
</a>
</div>
<?php
}
?>
</div>
<?php
}
?>
<div class="footer">
<ul class="lista">
<li><a href="index.php">Inicio</a></li> | <li><a href="quienes.php">Quienes somos</a></li> | <li><a href="mailto:ecopagsoporte@hotmail.com">Contacto</a></li> | <li><a href="terminos.php">Términos y condiciones</a></li>
</ul>
<a href="https://www.facebook.com/eco.ambientes" target="_blank"><img src="images/facebook.png" /></a><a href="https://twitter.com/#!/EcoItesm" target="_blank"><img src="images/twitter.png" /></a><a href="https://plus.google.com/u/0/101277163475432095165" target="_blank"><img src="images/google.png" /></a>
</div>
</div>
</body>
</html>
<?php
include 'cerdb.php';
?>