mirror of
https://github.com/e107inc/e107.git
synced 2025-08-31 02:00:14 +02:00
Core template path changes.
This commit is contained in:
101
e107_core/templates/userposts_template.php
Normal file
101
e107_core/templates/userposts_template.php
Normal file
@@ -0,0 +1,101 @@
|
||||
<?php
|
||||
/*
|
||||
* e107 website system
|
||||
*
|
||||
* Copyright (C) 2008-2011 e107 Inc (e107.org)
|
||||
* Released under the terms and conditions of the
|
||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||
*
|
||||
* User posts page template
|
||||
*
|
||||
* $URL$
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
if (!defined('e107_INIT')) { exit; }
|
||||
|
||||
if (!defined("USER_WIDTH")){ define("USER_WIDTH", "width:95%"); }
|
||||
|
||||
$USERPOSTS_TEMPLATE['np_table'] = "<p class='nextprev'>{USERPOSTS_NEXTPREV}</p>";
|
||||
$USERPOSTS_NP_TABLE = $USERPOSTS_TEMPLATE['np_table']; // BC, will be removed
|
||||
|
||||
// $USERPOSTS_NP_TABLE = "<div class='nextprev'>{USERPOSTS_NEXTPREV}</div>";
|
||||
|
||||
// ##### USERPOSTS_COMMENTS TABLE -----------------------------------------------------------------
|
||||
$USERPOSTS_TEMPLATE['comments_table_start'] = "
|
||||
<div id='up-comments-container'>
|
||||
{NEXTPREV}
|
||||
<table class='table fborder up-comments' id='up-comments'>
|
||||
";
|
||||
$USERPOSTS_COMMENTS_TABLE_START = $USERPOSTS_TEMPLATE['comments_table_start']; // BC, will be removed
|
||||
|
||||
$USERPOSTS_TEMPLATE['comments_table'] = "
|
||||
<tr>
|
||||
<td class='fcaption'>
|
||||
{USERPOSTS_COMMENTS_HREF_PRE}<b>{USERPOSTS_COMMENTS_HEADING}</b></a>
|
||||
<span class='smalltext'>{USERPOSTS_COMMENTS_DATESTAMP} ({USERPOSTS_COMMENTS_TYPE})</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3'>
|
||||
{USERPOSTS_COMMENTS_COMMENT}
|
||||
</td>
|
||||
</tr>
|
||||
";
|
||||
$USERPOSTS_COMMENTS_TABLE = $USERPOSTS_TEMPLATE['comments_table']; // BC, will be removed
|
||||
|
||||
$USERPOSTS_TEMPLATE['comments_table_end'] = "
|
||||
</table>
|
||||
{NEXTPREV}
|
||||
</div>";
|
||||
$USERPOSTS_COMMENTS_TABLE_END = $USERPOSTS_TEMPLATE['comments_table'];
|
||||
|
||||
$USERPOSTS_TEMPLATE['comments_table_empty'] = "
|
||||
<tr>
|
||||
<td class='forumheader3'>
|
||||
<span class='mediumtext'>".UP_LAN_7."</span>
|
||||
</td>
|
||||
</tr>
|
||||
";
|
||||
|
||||
// ##### ------------------------------------------------------------------------------------------
|
||||
|
||||
// ##### USERPOSTS FORUM TABLE --------------------------------------------------------------------
|
||||
// additional shortcodes available:
|
||||
// {USERPOSTS_FORUM_SEARCH_FIELD}, {USERPOSTS_FORUM_SEARCH_BUTTON}
|
||||
$USERPOSTS_TEMPLATE['forum_table_start'] = "
|
||||
<div style='text-align:center'>
|
||||
{NEXTPREV}
|
||||
<form method='post' action='".e_REQUEST_URL."'>
|
||||
<table class='table fborder up-forum' id='up-forum'>
|
||||
";
|
||||
$USERPOSTS_FORUM_TABLE_START = $USERPOSTS_TEMPLATE['forum_table_start']; // BC, will be removed
|
||||
|
||||
$USERPOSTS_TEMPLATE['forum_table'] = "
|
||||
<tr>
|
||||
<td class='fcaption'>
|
||||
{USERPOSTS_FORUM_TOPIC_HREF_PRE}<b>{USERPOSTS_FORUM_TOPIC_PRE} {USERPOSTS_FORUM_TOPIC}</b></a>
|
||||
<span class='smalltext'>({USERPOSTS_FORUM_NAME_HREF_PRE}<b>{USERPOSTS_FORUM_NAME}</b></a>)</span>
|
||||
<span class='smalltext'>{USERPOSTS_FORUM_DATESTAMP}</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class='forumheader3'>
|
||||
{USERPOSTS_FORUM_THREAD}
|
||||
</td>
|
||||
</tr>
|
||||
";
|
||||
$USERPOSTS_FORUM_TABLE = $USERPOSTS_TEMPLATE['forum_table']; // BC, will be removed
|
||||
|
||||
$USERPOSTS_TEMPLATE['forum_table_end'] = "
|
||||
<tr>
|
||||
<td class='forumheader' style='text-align:right'>
|
||||
{USERPOSTS_FORUM_SEARCH}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
{NEXTPREV}
|
||||
</div>
|
||||
";
|
||||
$USERPOSTS_FORUM_TABLE_END = $USERPOSTS_TEMPLATE['forum_table_end']; // BC, will be removed
|
Reference in New Issue
Block a user