1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-16 04:24:42 +01:00
php-e107/e107_plugins/pm/pm_template.php

194 lines
5.1 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| <EFBFBD>Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/pm/pm_template.php,v $
| $Revision: 1.2 $
| $Date: 2008-07-28 20:16:14 $
| $Author: e107steved $
2006-12-02 04:36:16 +00:00
+----------------------------------------------------------------------------+
*/
if (!defined('e107_INIT')) { exit; }
global $sc_style;
define("PM_READ_ICON", "<img src='".e_PLUGIN_ABS."/pm/images/read.png' style='height:16px; width:16px; border:0px' alt='".LAN_PM_111."' />");
define("PM_UNREAD_ICON", "<img src='".e_PLUGIN_ABS."/pm/images/unread.png' style='height:16px; width:16px; border:0px' alt='".LAN_PM_27."' />");
2006-12-02 04:36:16 +00:00
$sc_style['PM_ATTACHMENT_ICON']['pre'] = " ";
$sc_style['PM_ATTACHMENTS']['pre'] = "<br /><div style='vertical-align:bottom; text-align:left;'>";
$sc_style['PM_ATTACHMENTS']['post'] = "</div>";
$sc_style['PM_NEXTPREV']['pre'] = "<tr><td class='forumheader' colspan='6' style='text-align:left'> ".LAN_PM_59;
$sc_style['PM_NEXTPREV']['post'] = "</td></tr>";
$sc_style['EMOTES']['pre'] = "
<tr>
<td class='forumheader3'>".LAN_PM_7.": </td>
<td class='forumheader3'>
";
$sc_style['EMOTES']['post'] = "</td></tr>";
$sc_style['ATTACHMENT']['pre'] = "
<tr>
<td class='forumheader3'>".LAN_PM_8.": </td>
<td class='forumheader3'>
";
$sc_style['ATTACHMENT']['post'] = "</td></tr>";
$sc_style['RECEIPT']['pre'] = "
<tr>
<td class='forumheader3'>".LAN_PM_9.": </td>
<td class='forumheader3'>
";
$sc_style['RECEIPT']['post'] = "</td></tr>";
$sc_style['PM_REPLY']['pre'] = "<tr>
<td class='forumheader' style='text-align:center' colspan='2'>
";
$sc_style['PM_REPLY']['post'] = "</td>
</tr>
";
$PM_SEND_PM = "<div style='text-align: center'>
<table style='width:95%' class='fborder'>
<tr>
<td colspan='2' class='fcaption'>".LAN_PM_1.": </td>
</tr>
<tr>
<td class='forumheader3' style='width: 30%'>".LAN_PM_2.": </td>
<td class='forumheader3' style='width: 70%; text-align:left'>{FORM_TOUSER}<br />{FORM_TOCLASS}</td>
</tr>
<tr>
<td class='forumheader3'>".LAN_PM_5.": </td>
<td class='forumheader3'>{FORM_SUBJECT}</td>
</tr>
<tr>
<td class='forumheader3'>".LAN_PM_6.": </td>
<td class='forumheader3'>{FORM_MESSAGE}</td>
</tr>
{EMOTES}
{ATTACHMENT}
{RECEIPT}
<tr>
<td class='forumheader' colspan='2' style='text-align:center;'>{PM_POST_BUTTON}</td>
</tr>
</table>
</div>
";
$PM_INBOX_HEADER = "
<table class='fborder' style='width:95%'>
<tr>
<td class='fcaption' style='width:1%'>&nbsp;</td>
<td class='fcaption' style='width:1%'>&nbsp;</td>
<td class='fcaption' style='width:38%'>".LAN_PM_5."</td>
<td class='fcaption' style='width:22%'>".LAN_PM_31."</td>
<td class='fcaption' style='width:30%'>".LAN_PM_32."</td>
<td class='fcaption' style='width:8%'>&nbsp;</td>
</tr>
";
$PM_INBOX_TABLE = "
<tr>
<td class='forumheader3'>{PM_SELECT}</td>
<td class='forumheader3'>{PM_READ_ICON}</td>
<td class='forumheader3'>{PM_SUBJECT=link}{PM_ATTACHMENT_ICON}</td>
<td class='forumheader3'>{PM_FROM=link}</td>
<td class='forumheader3'>{PM_DATE}</td>
<td class='forumheader3' style='text-align: center; white-space: nowrap'>{PM_DELETE=inbox}&nbsp;{PM_BLOCK_USER}</td>
</tr>
";
$PM_INBOX_EMPTY = "
<tr>
<td colspan='6' class='forumheader'>".LAN_PM_34."</td>
</tr>
";
$PM_INBOX_FOOTER = "
<tr>
<td class='forumheader' colspan='6' style='text-align:center'>
{DELETE_SELECTED}
</td>
</tr>
{PM_NEXTPREV=inbox}
</table>
";
$PM_OUTBOX_HEADER = "
<table class='fborder' style='width:95%'>
<tr>
<td class='fcaption' style='width:1%'>&nbsp;</td>
<td class='fcaption' style='width:1%'>&nbsp;</td>
<td class='fcaption' style='width:38%'>".LAN_PM_5."</td>
<td class='fcaption' style='width:22%'>".LAN_PM_2."</td>
<td class='fcaption' style='width:30%'>".LAN_PM_33."</td>
<td class='fcaption' style='width:8%'>&nbsp;</td>
</tr>
";
$PM_OUTBOX_TABLE = "
<tr>
<td class='forumheader3'>{PM_SELECT}</td>
<td class='forumheader3'>{PM_READ_ICON}</td>
<td class='forumheader3'>{PM_SUBJECT=link}{PM_ATTACHMENT_ICON}</td>
<td class='forumheader3'>{PM_TO=link}</td>
<td class='forumheader3'>{PM_DATE}</td>
<td class='forumheader3' style='text-align: center'>{PM_DELETE=outbox}</td>
</tr>
";
$PM_OUTBOX_EMPTY = "
<tr>
<td colspan='6' class='forumheader'>".LAN_PM_34."</td>
</tr>
";
$PM_OUTBOX_FOOTER = "
<tr>
<td class='forumheader' colspan='6' style='text-align:center'>
{DELETE_SELECTED}
</td>
</tr>
{PM_NEXTPREV=outbox}
</table>
";
$PM_SHOW =
"<div style='text-align: center'>
<table class='fborder' style='width:95%'>
<tr>
<td class='fcaption' colspan='2'>{PM_SUBJECT}</td>
</tr>
<tr>
<td class='forumheader3' style='width:20%; vertical-align:top'>
{PM_FROM_TO}
<br />
<br />
<span class='smalltext'>".LAN_PM_29.":<br />{PM_DATE}</span>
<br />
<br />
<span class='smalltext'>".LAN_PM_30.":<br />{PM_READ}</span>
<br />
<br />
{PM_DELETE}
</td>
<td class='forumheader3' style='width:80%; vertical-align:top'>{PM_MESSAGE}<br /><br />{PM_ATTACHMENTS}</td>
</tr>
{PM_REPLY}
</table>
</div>
";
?>