mirror of
https://github.com/e107inc/e107.git
synced 2025-08-30 17:50:12 +02:00
Comment template cleanup.
This commit is contained in:
@@ -17,236 +17,10 @@
|
||||
if (!defined('e107_INIT')) { exit; }
|
||||
|
||||
|
||||
/*
|
||||
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);
|
||||
|
||||
|
||||
|
||||
|
||||
/// --------------------- Start of Legacy Code --------------------------------------- //
|
||||
|
||||
$EXTENDED_CATEGORY_START = "<tr><td colspan='2' class='forumheader center'>{EXTENDED_NAME}</td></tr>";
|
||||
|
||||
$EXTENDED_CATEGORY_TABLE = "
|
||||
<tr>
|
||||
<td style='width:30%' class='forumheader3'>{EXTENDED_ICON}{EXTENDED_NAME}
|
||||
</td>
|
||||
<td style='width:70%' 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}
|
||||
<div class='form-inline'>
|
||||
".LAN_SHOW.": {USER_FORM_RECORDS} ".LAN_USER_57." {USER_FORM_ORDER}
|
||||
{USER_FORM_SUBMIT}
|
||||
</div>
|
||||
{USER_FORM_END}
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<table style='".USER_WIDTH."' class='table fborder e-list'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='fcaption' style='width:2%'> </th>
|
||||
<th class='fcaption' style='width:20%'>".LAN_USER_58."</th>
|
||||
<th class='fcaption' style='width:20%'>".LAN_USER_60."</th>
|
||||
<th class='fcaption' style='width:20%'>".LAN_USER_59."</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{SETIMAGE: w=40}
|
||||
";
|
||||
$USER_SHORT_TEMPLATE_END = "
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
";
|
||||
|
||||
$USER_SHORT_TEMPLATE = "
|
||||
<tr>
|
||||
<td class='forumheader3' style='width:2%'>{USER_PICTURE}</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_RATING."</div><div class='f-right'>";
|
||||
$sc_style['USER_RATING']['post'] = "</div></td></tr>";
|
||||
|
||||
$sc_style['USER_LOGINNAME']['pre'] = " : ";
|
||||
|
||||
$sc_style['USER_COMMENTPOSTS']['pre'] = "<tr><td style='width:30%' class='forumheader3'>".LAN_USER_68."</td><td style='width:70%' class='forumheader3'>";
|
||||
$sc_style['USER_COMMENTPOSTS']['post'] = "";
|
||||
|
||||
$sc_style['USER_COMMENTPER']['pre'] = " ( ";
|
||||
$sc_style['USER_COMMENTPER']['post'] = "% )</td></tr>";
|
||||
|
||||
|
||||
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 (e107::getParser()->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 = "{SETIMAGE: w=250}
|
||||
<div class='content user'>
|
||||
<table style='".USER_WIDTH."' class='table fborder'>
|
||||
<tr>
|
||||
<td colspan='2' class='fcaption center'>".LAN_USER_58." {USER_ID} : {USER_NAME}{USER_LOGINNAME}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td {$span} class='forumheader3 center middle' style='width:20%'>{USER_PICTURE}</td>
|
||||
<td {$main_colspan} class='forumheader3'>
|
||||
<div class='f-left'>{USER_ICON=realname} ".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_ICON=email} ".LAN_USER_60."</div>
|
||||
<div class='f-right right'>{USER_EMAIL}</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td {$main_colspan} class='forumheader3'>
|
||||
<div class='f-left'>{USER_ICON=level} ".LAN_USER_54.":</div>
|
||||
<div class='f-right right'>{USER_LEVEL}</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td {$main_colspan} class='forumheader3'>
|
||||
<div class='f-left'>{USER_ICON=lastvisit} ".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_66."</td>
|
||||
<td style='width:70%' class='forumheader3'>{USER_VISITS}</td>
|
||||
</tr>
|
||||
|
||||
{USER_ADDONS}
|
||||
|
||||
{USER_COMMENTPOSTS}
|
||||
{USER_COMMENTPER}
|
||||
|
||||
|
||||
{USER_UPDATE_LINK}
|
||||
</table>
|
||||
<ul class='pager user-view-nextprev'>
|
||||
<li class='previous'>
|
||||
{USER_JUMP_LINK=prev}
|
||||
</li>
|
||||
<li>
|
||||
<!-- Back to List? -->
|
||||
</li>
|
||||
<li class='next'>
|
||||
{USER_JUMP_LINK=next}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
{PROFILE_COMMENTS}
|
||||
{PROFILE_COMMENT_FORM}
|
||||
";
|
||||
|
||||
$USER_EMBED_USERPROFILE_TEMPLATE = "
|
||||
<tr>
|
||||
<td class='forumheader3'>{USER_ADDON_LABEL}</td>
|
||||
<td class='forumheader3'>{USER_ADDON_TEXT}</td>
|
||||
</tr>";
|
||||
|
||||
|
||||
// Convert Shortcode Wrappers from v1.x to v2.x standards.
|
||||
$USER_TEMPLATE['view'] = $USER_FULL_TEMPLATE;
|
||||
$USER_WRAPPER['view']['USER_COMMENTS_LINK'] = $sc_style['USER_COMMENTS_LINK']['pre']."{---}".$sc_style['USER_COMMENTS_LINK']['post'];
|
||||
$USER_WRAPPER['view']['USER_SIGNATURE'] = $sc_style['USER_SIGNATURE']['pre']."{---}".$sc_style['USER_SIGNATURE']['post'];
|
||||
$USER_WRAPPER['view']['USER_UPDATE_LINK'] = $sc_style['USER_UPDATE_LINK']['pre']."{---}".$sc_style['USER_UPDATE_LINK']['post'];
|
||||
$USER_WRAPPER['view']['USER_FORUM_LINK'] = $sc_style['USER_FORUM_LINK']['pre']."{---}".$sc_style['USER_FORUM_LINK']['post'];
|
||||
$USER_WRAPPER['view']['USER_RATING'] = $sc_style['USER_RATING']['pre']."{---}".$sc_style['USER_RATING']['post'];
|
||||
$USER_WRAPPER['view']['USER_SENDPM'] = $sc_style['USER_SENDPM']['pre']."{---}".$sc_style['USER_SENDPM']['post'];
|
||||
$USER_WRAPPER['view']['USER_LOGINNAME'] = $sc_style['USER_LOGINNAME']['pre']."{---}";
|
||||
|
||||
$USER_WRAPPER['view']['USER_COMMENTPOSTS'] = $sc_style['USER_COMMENTPOSTS']['pre']."{---}";
|
||||
$USER_WRAPPER['view']['USER_COMMENTPER'] = $sc_style['USER_COMMENTPER']['pre']."{---}".$sc_style['USER_COMMENTPER']['post'];
|
||||
|
||||
$USER_TEMPLATE['addon'] = $USER_EMBED_USERPROFILE_TEMPLATE;
|
||||
$USER_TEMPLATE['extended']['start'] = $EXTENDED_CATEGORY_START;
|
||||
$USER_TEMPLATE['extended']['item'] = $EXTENDED_CATEGORY_TABLE ;
|
||||
$USER_TEMPLATE['extended']['start'] = $EXTENDED_CATEGORY_END;
|
||||
$USER_TEMPLATE['list']['start'] = $USER_SHORT_TEMPLATE_START;
|
||||
$USER_TEMPLATE['list']['item'] = $USER_SHORT_TEMPLATE;
|
||||
$USER_TEMPLATE['list']['end'] = $USER_SHORT_TEMPLATE_END;
|
||||
*/
|
||||
|
||||
// ------------ End of Legacy Code ------------------------------- //
|
||||
|
||||
// v2.x Standards.
|
||||
|
||||
|
||||
$USER_TEMPLATE = array(); // reset the legacy template above.
|
||||
$USER_WRAPPER = array(); // reset all the legacy wrappers above.
|
||||
$USER_TEMPLATE = array();
|
||||
$USER_WRAPPER = array();
|
||||
|
||||
|
||||
$USER_TEMPLATE['addon'] = '
|
||||
|
Reference in New Issue
Block a user