-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.php
171 lines (157 loc) · 4.92 KB
/
edit.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
<?php
require_once "./inc/dbc.inc.php";
require_once "./inc/Listen.php";
if(!isset($_SESSION['username']))
{
header("Location: /login.php"); // User wird auf den Login geleitet
}
if(!isset($_GET['id'])) //falls keine ID übergeben wurde wird einfach auf Mein Bereich geleitet
{
header("Location: bereich.php");
die();
}
$Link = getLinkById($dbc, $_GET['id']); //getLinkById führt eine Abfrage aus, welche den Datensatz aus tbl_urls als Array zurückgibt.
if(!(($Link["Benutzer_NR"] == $_SESSION["userId"]) || $_SESSION["isAdmin"]))
{
header("Location: bereich.php");
die();
}
if(isset($_POST['delete']))
{
$removeLinkQry = $dbc->prepare("DELETE FROM tbl_urls WHERE URL_ID = :id");
$removeLinkQry->bindParam(":id", $_GET["id"]);
$removeLinkQry->execute();
if(isset($_GET['from']) && $_GET['from'] == "admin") //falls man vom Linkverzeichnis kommt, wird man auch wieder darauf geleitet.
{
header("Location: admin_suche.php?delete=url");
}
else
{
header("Location: bereich.php?delete=url");
}
die();
}
else if(isset($_POST['edit']))
{
$updateLinkQry = $dbc->prepare("UPDATE tbl_urls SET
Kategorie_NR = :catNr,
URL_Beschreibung = :description
WHERE URL_ID = :id");
$updateLinkQry->bindParam(":catNr", $_POST['catSelect']);
$updateLinkQry->bindParam(":description", $_POST['beschreibung']);
$updateLinkQry->bindParam(":id", $_GET["id"]);
$updateLinkQry->execute();
$Link = getLinkById($dbc, $_GET['id']); //überarbeitete Version des Links holen.
$alert = "<script>$.notify('Änderungen erfolgreich gespeichert', 'success');</script>";
}
?>
<html>
<head>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<title>Bearbeitung</title>
<link rel="stylesheet" href="stylesheet.css">
<script src="js/jquery-1.12.3.min.js"></script>
<script src="js/notify.min.js"></script> <!-- Notifications (zB. beim Einloggen) -->
<title>URL bearbeiten</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 "Hallo, " . $_SESSION['username'] . ".";
?>
<a href="login.php?logout">Willst du dich abmelden?</a>
</div>
<!---->
<form method="POST">
<div id = "inhalt-table">
<table class="demo">
<tr class="noborder">
<td>Link</td>
<?php
echo "<td><a href='/?c=". $Link['URL_short'] ."'>" . $Link['URL_short'] . "</a></td>";
?>
</tr>
<tr class="noborder">
<td>Original URL</td>
<?php
echo "<td><a href='". $Link['URL_original'] ."'>" . $Link['URL_original'] . "</td>";
?>
</tr>
<tr class="noborder">
<td>Kategorie</td>
<td>
<select name="catSelect" size="0" id="catSelect">
<?php
$allCats = getAllCategories($dbc);
foreach($allCats as $cat)
{
if($Link['Kategorie_NR'] == $cat['Kategorie_ID'])
{
echo '<option value="'.$cat['Kategorie_ID'].'" selected>'.$cat['Kategorie_Bezeichnung'].'</option>';
}
else
{
echo '<option value="'.$cat['Kategorie_ID'].'">'.$cat['Kategorie_Bezeichnung'].'</option>';
}
}
?>
</select>
</tr>
<tr class="noborder">
<td>Beschreibung</td>
<td>
<textarea name="beschreibung"><?= $Link['URL_Beschreibung']; ?></textarea>
</td>
</tr>
</table>
<br><br>
<input class="btn btn-small" type = "submit" name="delete" value = "Löschen">   
<input class="btn btn-small" type = "submit" name="edit" value = "Speichern">   
</form>
<?php
if(isset($_GET['from']) && $_GET['from'] == "admin")
{
echo '<form class="inlineForm" action="admin_suche.php">';
}
else
{
echo '<form class="inlineForm" action="bereich.php">';
}
?>
<input type="submit" class="btn btn-small" value="Zurück">
</form>
</div>
<br>
</div>
</body>