mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
209 lines
5.9 KiB
PHP
209 lines
5.9 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_themes/templates/user_template.php,v $
|
|
* $Revision$
|
|
* $Date$
|
|
* $Author$
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
if (!defined("USER_WIDTH")){ define("USER_WIDTH", "width:95%"); }
|
|
|
|
global $user_shortcodes, $pref, $user;
|
|
//Set this to TRUE if you would like any extended user field that is empty to NOT be shown on the profile page
|
|
define("HIDE_EMPTY_FIELDS", FALSE);
|
|
|
|
$EXTENDED_CATEGORY_START = "<tr><td colspan='2' class='forumheader center'>{EXTENDED_NAME}</td></tr>";
|
|
|
|
$EXTENDED_CATEGORY_TABLE = "
|
|
<tr>
|
|
<td style='width:40%' class='forumheader3'>
|
|
{EXTENDED_ICON}
|
|
{EXTENDED_NAME}
|
|
</td>
|
|
<td style='width:60%' class='forumheader3'>{EXTENDED_VALUE}</td>
|
|
</tr>
|
|
";
|
|
|
|
$EXTENDED_CATEGORY_END = "";
|
|
|
|
/**
|
|
* Preparing for huge markup/css changes
|
|
*/
|
|
$USER_SHORT_TEMPLATE_START = "
|
|
<div class='content user-list'>
|
|
<div class='center'>".LAN_USER_56." {TOTAL_USERS}
|
|
<br />
|
|
<br />
|
|
{USER_FORM_START}
|
|
<p>".LAN_USER_70.": {USER_FORM_RECORDS} ".LAN_USER_57." {USER_FORM_ORDER}
|
|
{USER_FORM_SUBMIT}
|
|
</p>
|
|
{USER_FORM_END}
|
|
</div>
|
|
<br />
|
|
<br />
|
|
<table style='".USER_WIDTH."' class='fborder e-list'>
|
|
<thead>
|
|
<tr>
|
|
<td class='fcaption' style='width:2%'> </td>
|
|
<td class='fcaption' style='width:20%'>".LAN_USER_58."</td>
|
|
<td class='fcaption' style='width:20%'>".LAN_USER_60."</td>
|
|
<td class='fcaption' style='width:20%'>".LAN_USER_59."</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
";
|
|
$USER_SHORT_TEMPLATE_END = "
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
";
|
|
|
|
$USER_SHORT_TEMPLATE = "
|
|
<tr>
|
|
<td class='forumheader3' style='width:2%'>{USER_ICON_LINK}</td>
|
|
<td class='forumheader3' style='width:20%'>{USER_ID}: {USER_NAME_LINK}</td>
|
|
<td class='forumheader3' style='width:20%'>{USER_EMAIL}</td>
|
|
<td class='forumheader3' style='width:20%'>{USER_JOIN}</td>
|
|
</tr>
|
|
";
|
|
|
|
$sc_style['USER_SIGNATURE']['pre'] = "<tr><td colspan='2' class='forumheader3 left'>";
|
|
$sc_style['USER_SIGNATURE']['post'] = "</td></tr>";
|
|
|
|
$sc_style['USER_COMMENTS_LINK']['pre'] = "<tr><td colspan='2' class='forumheader3 left'>";
|
|
$sc_style['USER_COMMENTS_LINK']['post'] = "</td></tr>";
|
|
|
|
$sc_style['USER_FORUM_LINK']['pre'] = "<tr><td colspan='2' class='forumheader3 left'>";
|
|
$sc_style['USER_FORUM_LINK']['post'] = "</td></tr>";
|
|
|
|
$sc_style['USER_UPDATE_LINK']['pre'] = "<tr><td colspan='2' class='forumheader3 center'>";
|
|
$sc_style['USER_UPDATE_LINK']['post'] = "</td></tr>";
|
|
|
|
$sc_style['USER_RATING']['pre'] = "<tr><td colspan='2' class='forumheader3'><div class='f-left'>".LAN_USER_61."</div><div class='f-right'>";
|
|
$sc_style['USER_RATING']['post'] = "</div></td></tr>";
|
|
|
|
$sc_style['USER_LOGINNAME']['pre'] = " : ";
|
|
|
|
if(isset($pref['photo_upload']) && $pref['photo_upload'])
|
|
{
|
|
$user_picture = "{USER_PICTURE}";
|
|
$colspan = " colspan='2'";
|
|
$main_colspan = "";
|
|
}
|
|
else
|
|
{
|
|
$user_picture = "";
|
|
$colspan = "";
|
|
$main_colspan = " colspan = '2' ";
|
|
}
|
|
|
|
$sc_style['USER_SENDPM']['pre'] = "<tr><td colspan='2' class='forumheader3'><div class='f-left'>";
|
|
$sc_style['USER_SENDPM']['post'] = "</div><div class='f-right'>".LAN_USER_62."</div></td></tr>";
|
|
|
|
// Determine which other bits are installed; let photo span those rows (can't do signature - will vary with user)
|
|
$span = 4;
|
|
if ($tp->parseTemplate("{USER_SENDPM}", FALSE, $user_shortcodes)) $span++;
|
|
$span = " rowspan='".$span."' ";
|
|
|
|
$sc_style['USER_PICTURE']['pre']="<td {$span} class='forumheader3 center middle' style='width:20%'>";
|
|
$sc_style['USER_PICTURE']['post']="</td>";
|
|
|
|
$USER_FULL_TEMPLATE = "
|
|
<div class='content user'>
|
|
<table style='".USER_WIDTH."' class='fborder'>
|
|
<tr>
|
|
<td colspan='2' class='fcaption center'>".LAN_USER_58." {USER_ID} : {USER_NAME}{USER_LOGINNAME}</td>
|
|
</tr>
|
|
<tr>
|
|
{$user_picture}
|
|
<td {$main_colspan} class='forumheader3'>
|
|
<div class='f-left'>{USER_REALNAME_ICON} ".LAN_USER_63."</div>
|
|
<div class='f-right right'>{USER_REALNAME}</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td {$main_colspan} class='forumheader3'>
|
|
<div class='f-left'>{USER_EMAIL_ICON} ".LAN_USER_60."</div>
|
|
<div class='f-right right'>{USER_EMAIL_LINK}</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td {$main_colspan} class='forumheader3'>
|
|
<div class='f-left'>".LAN_USER_54.":</div>
|
|
<div class='f-right right'>{USER_LEVEL}</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td {$main_colspan} class='forumheader3'>
|
|
<div class='f-left'>".LAN_USER_65.": </div>
|
|
<div class='f-right right'>{USER_LASTVISIT}<br />{USER_LASTVISIT_LAPSE}</div>
|
|
</td>
|
|
</tr>
|
|
{USER_SENDPM}
|
|
{USER_RATING}
|
|
{USER_SIGNATURE}
|
|
{USER_EXTENDED_ALL}
|
|
<tr>
|
|
<td colspan='2' class='forumheader'>".LAN_USER_64."</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td style='width:30%' class='forumheader3'>".LAN_USER_59."</td>
|
|
<td style='width:70%' class='forumheader3'>{USER_JOIN}<br />{USER_DAYSREGGED}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td style='width:30%' class='forumheader3'>".LAN_USER_67."</td>
|
|
<td style='width:70%' class='forumheader3'>{USER_CHATPOSTS} ( {USER_CHATPER}% )</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td style='width:30%' class='forumheader3'>".LAN_USER_68."</td>
|
|
<td style='width:70%' class='forumheader3'>{USER_COMMENTPOSTS} ( {USER_COMMENTPER}% )</td>
|
|
</tr>
|
|
{USER_COMMENTS_LINK}
|
|
|
|
<tr>
|
|
<td style='width:30%' class='forumheader3'>".LAN_USER_69."</td>
|
|
<td style='width:70%' class='forumheader3'>{USER_FORUMPOSTS} ( {USER_FORUMPER}% )</td>
|
|
</tr>
|
|
{USER_FORUM_LINK}
|
|
<tr>
|
|
<td style='width:30%' class='forumheader3'>".LAN_USER_66."</td>
|
|
<td style='width:70%' class='forumheader3'>{USER_VISITS}</td>
|
|
</tr>
|
|
{USER_EMBED_USERPROFILE}
|
|
{USER_UPDATE_LINK}
|
|
<tr>
|
|
<td colspan='2' class='forumheader3 center'>
|
|
<table style='width:95%'>
|
|
<tr>
|
|
<td style='width:50%'>{USER_JUMP_LINK=prev}</td>
|
|
<td class='right' style='width:50%;'>{USER_JUMP_LINK=next}</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table></div>
|
|
{PROFILE_COMMENTS}
|
|
{PROFILE_COMMENT_FORM}
|
|
";
|
|
|
|
$USER_EMBED_USERPROFILE_TEMPLATE = "
|
|
<tr><td colspan='2' class='fcaption'>{USER_EMBED_USERPROFILE_CAPTION}</td></tr>
|
|
<tr><td colspan='2' class='forumheader3'>{USER_EMBED_USERPROFILE_TEXT}</td></tr>";
|
|
|
|
?>
|