| 1 |
lars |
1 |
<?
|
|
|
2 |
$self=basename($PHP_SELF);
|
|
|
3 |
define ("modul_name", "online_shop");
|
|
|
4 |
define ("tool_name", "directory");
|
|
|
5 |
require_once "connect2.php";
|
|
|
6 |
|
|
|
7 |
session_start();
|
|
|
8 |
if (!$language) {$language="DE";}
|
|
|
9 |
|
|
|
10 |
if ($delete_link)
|
|
|
11 |
{
|
|
|
12 |
mysql_query("delete from shop_link_table where ID = $ID and Father = $Father and Verwendung = 'd2d'");
|
|
|
13 |
?>
|
|
|
14 |
<script language="javascript">
|
|
|
15 |
parent.tree.reload();
|
|
|
16 |
document.location.href="directory.php?action=edit&ID=<? echo $Father ?>";
|
|
|
17 |
</script>
|
|
|
18 |
<?
|
|
|
19 |
}
|
|
|
20 |
|
|
|
21 |
if ($goto_original)
|
|
|
22 |
{
|
|
|
23 |
header("Location: directory.php?action=edit&ID=$ID");
|
|
|
24 |
}
|
|
|
25 |
?>
|
|
|
26 |
<html>
|
|
|
27 |
<head>
|
|
|
28 |
<title><? echo $webs[kunde_bezeichnung] ?>: Redaktionssystem</title>
|
|
|
29 |
<meta http-equiv="Content-Type" content="text/html; charset=<? echo $charset ?>">
|
|
|
30 |
<link rel=stylesheet type="text/css" href="redaktion.css">
|
|
|
31 |
<meta name="description" content="Redaktionssystem">
|
|
|
32 |
<meta name="author" content="Webagentur Niewerth">
|
|
|
33 |
<meta name="robots" content="noindex">
|
|
|
34 |
</head>
|
|
|
35 |
<body bgcolor="#<? echo $webs[bgcolor_seite]; ?>" leftmargin="20" topmargin="10" marginwidth="20" marginheight="10" text="#000000">
|
|
|
36 |
<form action="<? echo $self ?>" method="post">
|
|
|
37 |
<table width="488" border="1" cellspacing="0" cellpadding="3" bordercolorlight="#FFFFFF" bordercolordark="#999999">
|
|
|
38 |
<tr bgcolor="#<? echo $webs[bgcolor_links] ?>">
|
|
|
39 |
<td height="23"><font color="#<? echo $webs[font_color_links] ?>"><b>verlinkter
|
|
|
40 |
Ordner
|
|
|
41 |
<input type="hidden" name="Father" value="<? echo $Father ?>">
|
|
|
42 |
<input type="hidden" name="ID" value="<? echo $ID ?>">
|
|
|
43 |
</b></font></td>
|
|
|
44 |
</tr>
|
|
|
45 |
<tr bgcolor="#<? echo $webs[bgcolor_links] ?>">
|
|
|
46 |
<td align="center">
|
|
|
47 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
48 |
<tr>
|
|
|
49 |
<td align="center" width="50%" height="200">
|
|
|
50 |
<input type="submit" value="Verlinkung löschen" name="delete_link">
|
|
|
51 |
</td>
|
|
|
52 |
<td align="center" width="50%">
|
|
|
53 |
<input type="submit" name="goto_original" value="zu den Ordnerdaten wechseln">
|
|
|
54 |
</td>
|
|
|
55 |
</tr>
|
|
|
56 |
</table>
|
|
|
57 |
</td>
|
|
|
58 |
</tr>
|
|
|
59 |
</table>
|
|
|
60 |
</form>
|
|
|
61 |
</body>
|