-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbereich.php
135 lines (127 loc) · 4.01 KB
/
bereich.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
<?php
require_once "./inc/dbc.inc.php";
require_once "./inc/Listen.php";
if(!isset($_SESSION['username']))
{
header("Location: /login.php"); // User wird auf Hauptseite geleitet
}
if($_SESSION['isAdmin'] && isset($_GET['user']))
{
$userId = $_GET['user']; //der Admin wird übers Admin-Panel auf diese Seite geleitet, wenn er die URLs eines anderen Nutzers einsehen will
}
else
{
$userId = $_SESSION['userId']; //...jedoch können normale Nutzer das nicht.
}
if(isset($_GET['delete']) && $_GET['delete'] == "url")
{
$alert = "<script>$.notify('Link wurde gelöscht', 'success');</script>";
}
//(Bedingung ? true : false)
$catId = (isset($_POST['catId']) ? $_POST['catId'] : 0);
$searchString = (isset($_POST['Beschreibung']) ? $_POST['Beschreibung'] : "");
?>
<html>
<head>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="stylesheet.css">
<title>Bereich</title>
</head>
<body>
<?php if(isset($alert)) { echo $alert; } ?>
<header>
<div id = "nav-bar-links">
<div>
<a href = "index.php"> <b> START   </b> </a>
<a href = "bereich.php"> <b> MEIN BEREICH  </b> </a>
<?php
if(isset($_SESSION['isAdmin']) && $_SESSION['isAdmin'])
{
echo '<a href = "admin.php"> <b> ADMIN  </b> </a>';
echo '<a href = "admin_suche.php"> <b> LINKVERZEICHNIS  </b> </a>';
}
?>
</div>
<div style = "left: 80%;">
<?php
if(isset($_SESSION['username']))
{
echo '<a href="bereich.php"><b>Hallo, ' . $_SESSION['username'] . '</b></a>';
}
else
{
echo '<a href = "login.php"><b>ANMELDEN</b></a>';
}
?>
</div>
</div>
</header>
<div id = "inhalt">
<br>
<br>
<div id = "ueberschrift">
<?php
echo "Willkommen, " . $_SESSION['username'] . ".";
?>
<a href="edit_user.php?id=<?= $_SESSION['userId']; ?>">Email oder Passwort ändern</a> |
<a href="login.php?logout">Abmelden</a>
</div>
<!---->
<div id = "inhalt-table">
<form method="POST">
Kategorie:
<select name="catId">
<option value="0">Alle</option>
<?php
$allCats = getAllCategories($dbc);
foreach($allCats as $cat)
{
if($cat['Kategorie_ID'] == $catId)
{
echo '<option value="'.$cat['Kategorie_ID'].'" selected>'.$cat['Kategorie_Bezeichnung'].'</option>';
}
else
{
echo '<option value="'.$cat['Kategorie_ID'].'">'.$cat['Kategorie_Bezeichnung'].'</option>';
}
}
?>
</select>
Beschreibung: <input type="text" name="Beschreibung" placeholder="Beschreibung" value="<?= $searchString; ?>">
<input type="submit" value="Suchen" name="Suchen" class="btn btn-small">
</form>
<table class="demo">
<thead>
<tr>
<th class="noborder">Link</th>
<th class="noborder">Original URL</th>
<th class="noborder">Kategorie</th>
<th class="noborder">Beschreibung</th>
<th class="noborder">Klicks</th>
<th class="noborder-small"> </th>
</tr>
</thead>
<tbody>
<?php
foreach(getLinksByParam($dbc, $userId, $catId, $searchString) as $Link)
{
echo "<tr>";
echo "<td><a href='/?c=". $Link['URL_short'] ."'>" . $Link['URL_short'] . "</a></td>";
echo "<td><div class='urlDisplay' style=''><a href='". $Link['URL_original'] ."'>" . $Link['URL_original'] . "</div></td>";
echo "<td>" . $Link['Kategorie_Bezeichnung'] . "</td>";
echo "<td>" . nl2br(htmlspecialchars($Link['URL_Beschreibung'])) . "</td>"; //nl2br wandelt Zeilenumbrüche in <br>'s um (new line to br)
echo "<td>" .$Link["URL_Klicks"] . "</td>";
echo '<td class="noborder"><a href="edit.php?id='.$Link['URL_ID'].'" class="btn btn-small">EDIT</a></td>';
echo "</tr>";
}
?>
<tbody>
</table>
<br><br>
<br><br>
</div>
<br>
</div>
</body>
</html>