summaryrefslogtreecommitdiff
path: root/manager/application/views/scripts/mail/full.phtml
blob: 4e6d42fdac155e97eadd84f00fe0b65d65a4fb71 (plain)
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
<?php
/**
 * @author markus
 * $Id: index.phtml 25 2009-12-02 15:43:21Z markus $
 */
$this->headLink()->appendStylesheet('/css/mail.css');
?>
<H1><?php print I18n::_('View all Mail'); ?></H1>
<?php
if (count($this->headers) == 0) {
	print I18n::_('You currently have no mail.');
}
else {
?>
<table>
	<tr>
		<th class="col1"><?php print I18n::_('From');?></th>
		<th class="col2"><?php print I18n::_('To');?></th>
		<th class="col3"><?php print I18n::_('Subject');?></th>
		<th class="col4"><?php print I18n::_('Date');?></th>
		<th class="col5"><?php print I18n::_('Size');?></th>
		<th class="col6"><?php print I18n::_('Del');?></th>
	</tr>
<?php
	foreach ($this->headers as $header) {
		print "        <tr>\n";
		print "            <td><a href=\"" . $header->detailslink . "\">" . $header->fromaddress . "</a></td>";
		print "            <td>" . $header->toaddress . "</td>";
		print "            <td>" . $header->subject . "</td>";
		print "            <td>" . $header->date . "</td>";
		print "            <td>" . $header->Size . "</td>";
		print "            <td><a class=\"delete\" href=\"" . $header->deletelink . "\"><img src=\"/img/delete_icon.jpg\"></a></td>";
		print "        </tr>\n";
	}
}
?>
</table>