31 lines
No EOL
1.3 KiB
PHTML
31 lines
No EOL
1.3 KiB
PHTML
<html>
|
|
<head>
|
|
<title>Seinheit</title>
|
|
<link rel="stylesheet" type="text/css" href="/style/main.css" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<script src="<?php echo $this->base ?>/script/admin.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div style="padding: 10px;">
|
|
<h3 style="color:white; padding: 3px;background-color: #CB3829;">Bild Hochladen</h3>
|
|
<p><form method="post" enctype="multipart/form-data">
|
|
<input name="myfile" type="file" size="50" maxlength="100000"> <input type="submit" value="Go" />
|
|
</form>
|
|
</p>
|
|
<h3 style="color:white; padding: 3px;background-color: #CB3829;">Bild Auswählen</h3>
|
|
|
|
<ul style="padding-left: 16px; list-style-type: none">
|
|
<?php foreach($this->files as $file): ?>
|
|
<li>
|
|
<a href="javascript: void(0);" onclick="window.open('/img/<?php echo $this->type; ?>/<?php echo $file; ?>', 'Bild', 'width=500,height=400,status=yes,scrollbars=yes,resizable=yes');"><img src="/img/<?php echo $this->type; ?>/<?php echo $file; ?>" width="50" height="50" /></a>
|
|
<a href="javascript: void(0);" onclick="adminPageInsertImage('<?php echo $this->type; ?>', '<?php echo $file; ?>'); window.close();" >Einfügen</a>
|
|
<a href="?delete=<?php echo $file ?>" style="float:right; margin-top: 35px">Löschen</a>
|
|
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|