mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-13 03:27:03 +02:00
added the webui to the tarball
This commit is contained in:
24
webui/view/theme/default/templates/message/headers.tpl
Normal file
24
webui/view/theme/default/templates/message/headers.tpl
Normal file
@ -0,0 +1,24 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/style.css" />
|
||||
</head>
|
||||
|
||||
<body style="background: white;">
|
||||
|
||||
<div id="messagepopup">
|
||||
|
||||
<p>
|
||||
<a class="messagelink" href="/index.php?route=message/download&id=<?php print $id; ?>"><?php print $text_download_message; ?></a> |
|
||||
<a class="messagelink" href="/index.php?route=message/restore&id=<?php print $id; ?>"><?php print $text_restore_to_mailbox; ?></a> |
|
||||
<a class="messagelink" href="/message.php/<?php print $id; ?>"><?php print $text_view_message; ?></a>
|
||||
<?php if(Registry::get('admin_user') == 1 && HOLD_EMAIL == 0) { ?>
|
||||
| <a class="messagelink" href="/index.php?route=message/remove&id=<?php print $id; ?>"><?php print $text_remove_message; ?></a>
|
||||
<?php } ?>
|
||||
</p>
|
||||
|
||||
<pre><?php print $data; ?></pre>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
webui/view/theme/default/templates/message/remove.tpl
Normal file
22
webui/view/theme/default/templates/message/remove.tpl
Normal file
@ -0,0 +1,22 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/style.css" />
|
||||
</head>
|
||||
|
||||
<body style="background: white;">
|
||||
|
||||
<div id="messagepopup">
|
||||
|
||||
<p>
|
||||
<a class="messagelink" href="/index.php?route=message/download&id=<?php print $id; ?>"><?php print $text_download_message; ?></a> |
|
||||
<a class="messagelink" href="/index.php?route=message/restore&id=<?php print $id; ?>"><?php print $text_restore_to_mailbox; ?></a> |
|
||||
<a class="messagelink" href="/message.php/<?php print $id; ?>"><?php print $text_view_message; ?></a> |
|
||||
<a class="messagelink" href="/index.php?route=message/headers&id=<?php print $id; ?>"><?php print $text_view_headers; ?></a>
|
||||
</p>
|
||||
|
||||
<p><?php print $data; ?></p>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
24
webui/view/theme/default/templates/message/restore.tpl
Normal file
24
webui/view/theme/default/templates/message/restore.tpl
Normal file
@ -0,0 +1,24 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/style.css" />
|
||||
</head>
|
||||
|
||||
<body style="background: white;">
|
||||
|
||||
<div id="messagepopup">
|
||||
|
||||
<p>
|
||||
<a class="messagelink" href="/index.php?route=message/download&id=<?php print $id; ?>"><?php print $text_download_message; ?></a> |
|
||||
<a class="messagelink" href="/message.php/<?php print $id; ?>"><?php print $text_view_message; ?></a> |
|
||||
<a class="messagelink" href="/index.php?route=message/headers&id=<?php print $id; ?>"><?php print $text_view_headers; ?></a>
|
||||
<?php if(Registry::get('admin_user') == 1 && HOLD_EMAIL == 0) { ?>
|
||||
| <a class="messagelink" href="/index.php?route=message/remove&id=<?php print $id; ?>"><?php print $text_remove_message; ?></a>
|
||||
<?php } ?>
|
||||
</p>
|
||||
|
||||
<p><?php print $data; ?></p>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
36
webui/view/theme/default/templates/message/view.tpl
Normal file
36
webui/view/theme/default/templates/message/view.tpl
Normal file
@ -0,0 +1,36 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/style.css" />
|
||||
</head>
|
||||
|
||||
<body style="background: white;">
|
||||
|
||||
<div id="messagepopup">
|
||||
|
||||
<p>
|
||||
<a class="messagelink" href="/index.php?route=message/download&id=<?php print $id; ?>"><?php print $text_download_message; ?></a> |
|
||||
<a class="messagelink" href="/index.php?route=message/restore&id=<?php print $id; ?>"><?php print $text_restore_to_mailbox; ?></a> |
|
||||
<a class="messagelink" href="/index.php?route=message/headers&id=<?php print $id; ?>"><?php print $text_view_headers; ?></a>
|
||||
<?php if(Registry::get('admin_user') == 1 && HOLD_EMAIL == 0) { ?>
|
||||
| <a class="messagelink" href="/index.php?route=message/remove&id=<?php print $id; ?>"><?php print $text_remove_message; ?></a>
|
||||
<?php } ?>
|
||||
</p>
|
||||
|
||||
<strong><?php if($message['subject'] == "" || $message['subject'] == "Subject:") { print "<" . $text_no_subject . ">"; } else { print $message['subject']; } ?></strong><br />
|
||||
<strong><?php print $message['from']; ?></strong><br />
|
||||
<strong><?php print $message['to']; ?></strong><br />
|
||||
<strong><?php print $message['date']; ?></strong><br />
|
||||
|
||||
<form action="/index.php?route=message/view" method="post" name="tag">
|
||||
<input type="hidden" name="id" value="<?php print $id; ?>" />
|
||||
<p><?php print $text_tags; ?>: <input type="text" name="tag" id="tag" value="<?php print $message['tag']; ?>" size="50" /> <input type="submit" value="<?php print $text_submit; ?>" /></p>
|
||||
</form>
|
||||
|
||||
<hr />
|
||||
|
||||
<?php print $message['message']; ?><br />
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user