subSilver goes into CVS
git-svn-id: file:///svn/phpbb/trunk@1082 89ea8834-ac86-4346-8a33-228a782c2dd0
146
phpBB/templates/subSilver/admin/admin_config_body.tpl
Normal file
@ -0,0 +1,146 @@
|
||||
<br clear="all" />
|
||||
|
||||
<h1>General Configuration</h1>
|
||||
|
||||
<p>The form below will allow you to customize all the general board options. For User and Forum configurations use the related links on the left hand side.</p>
|
||||
|
||||
<form action="{S_CONFIG_ACTION}" method="POST"><table width="99%" cellpadding="4" cellspacing="1" border="0" align="center">
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle">General Board Settings</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Site Name:</td>
|
||||
<td class="row2"><input type="text" size="25" maxlength="100" name="sitename" value="{SITENAME}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Enable account activation:</td>
|
||||
<td class="row2"><input type="radio" name="require_activation" value="{ACTIVATION_NONE}" {ACTIVATION_NONE_CHECKED}>None <input type="radio" name="require_activation" value="{ACTIVATION_USER}" {ACTIVATION_USER_CHECKED}>User <input type="radio" name="require_activation" value="{ACTIVATION_ADMIN}" {ACTIVATION_ADMIN_CHECKED}>Admin</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Flood Interval: <br /><span class="gensmall">Number of seconds a user must wait between posts</span></td>
|
||||
<td class="row2"><input type="text" size="3" maxlength="4" name="flood_interval" value="{FLOOD_INTERVAL}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Topics Per Page</td>
|
||||
<td class="row2"><input type="text" name="topics_per_page" size="3" maxlength="4" value="{TOPICS_PER_PAGE}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Posts Per Page</td>
|
||||
<td class="row2"><input type="text" name="posts_per_page" size="3" maxlength="4" value="{POSTS_PER_PAGE}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Hot Threshold</td>
|
||||
<td class="row2"><input type="text" name="hot_threshold" size="3" maxlength="4" value="{HOT_TOPIC}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Default Style:</td>
|
||||
<td class="row2">{STYLE_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Override user style:<br /><span class="gensmall">Replaces users style with the default</span></td>
|
||||
<td class="row2"><input type="radio" name="override_user_style" value="1" {OVERRIDE_STYLE_YES}> Yes <input type="radio" name="override_user_style" value="0" {OVERRIDE_STYLE_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Default Language:</td>
|
||||
<td class="row2">{LANG_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Date Format:<br /><span class="gensmall">{L_DATE_FORMAT_EXPLAIN}</span></td>
|
||||
<td class="row2"><input type="text" maxlength="16" name="default_dateformat" value="{DEFAULT_DATEFORMAT}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">System Timezone:</td>
|
||||
<td class="row2">{TIMEZONE_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Enable GZip Compression:</td>
|
||||
<td class="row2"><input type="radio" name="gzip_compress" value="1" {GZIP_YES}> Yes <input type="radio" name="gzip_compress" value="0" {GZIP_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Enable Forum Pruning:</td>
|
||||
<td class="row2"><input type="radio" name="prune_enable" value="1" {PRUNE_YES}> Yes <input type="radio" name="prune_enable" value="0" {PRUNE_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle">User/Forum Ability Settings</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Allow HTML</td>
|
||||
<td class="row2"><input type="radio" name="allow_html" value="1" {HTML_YES}> Yes <input type="radio" name="allow_html" value="0" {HTML_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Allow BBCode</td>
|
||||
<td class="row2"><input type="radio" name="allow_bbcode" value="1" {BBCODE_YES}> Yes <input type="radio" name="allow_bbcode" value="0" {BBCODE_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Allow Smilies</td>
|
||||
<td class="row2"><input type="radio" name="allow_smilies" value="1" {SMILE_YES}> Yes <input type="radio" name="allow_smilies" value="0" {SMILE_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Smilies Storage Path <br /><span class="gensmall">Path under your phpBB root dir, e.g. images/smilies</span></td>
|
||||
<td class="row2"><input type="text" size="20" maxlength="255" name="smilies_path" value="{SMILIES_PATH}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Allow Signatures</td>
|
||||
<td class="row2"><input type="radio" name="allow_sig" value="1" {SIG_YES}> Yes <input type="radio" name="allow_sig" value="0" {SIG_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Allow Name Change</td>
|
||||
<td class="row2"><input type="radio" name="allow_namechange" value="1" {NAMECHANGE_YES}> Yes <input type="radio" name="allow_namechange" value="0" {NAMECHANGE_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle">Avatar Settings</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Allow local gallery avatars</td>
|
||||
<td class="row2"><input type="radio" name="allow_avatar_local" value="1" {AVATARS_LOCAL_YES}> Yes <input type="radio" name="allow_avatar_local" value="0" {AVATARS_LOCAL_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Allow remote avatars <br /><span class="gensmall">Avatars linked from another website</span></td>
|
||||
<td class="row2"><input type="radio" name="allow_avatar_remote" value="1" {AVATARS_REMOTE_YES}> Yes <input type="radio" name="allow_avatar_remote" value="0" {AVATARS_REMOTE_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Allow avatar uploading</td>
|
||||
<td class="row2"><input type="radio" name="allow_avatar_upload" value="1" {AVATARS_UPLOAD_YES}> Yes <input type="radio" name="allow_avatar_upload" value="0" {AVATARS_UPLOAD_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Max. Avatar File Size<br /><span class="gensmall">For uploaded avatar files</span></td>
|
||||
<td class="row2"><input type="text" size="4" maxlength="10" name="avatar_filesize" value="{AVATAR_FILESIZE}"> Bytes</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Max. Avatar Size <br />
|
||||
<span class="gensmall">(height x width)</span>
|
||||
</td>
|
||||
<td class="row2"><input type="text" size="3" maxlength="4" name="avatar_max_height" value="{AVATAR_MAX_HEIGHT}"> x <input type="text" size="3" maxlength="4" name="avatar_max_width" value="{AVATAR_MAX_WIDTH}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Avatar Storage Path <br /><span class="gensmall">Path under your phpBB root dir, e.g. images/avatars</span></td>
|
||||
<td class="row2"><input type="text" size="20" maxlength="255" name="avatar_path" value="{AVATAR_PATH}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle">Email Settings</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Admin Email Address</td>
|
||||
<td class="row2"><input type="text" size="25" maxlength="100" name="board_email" value="{EMAIL_FROM}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Email Signature<br /><span class="gensmall">This text will be attached to all emails the board sends</span></td>
|
||||
<td class="row2"><textarea name="board_email_sig" rows="5" cols="30">{EMAIL_SIG}</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Use SMTP for delivery<br /><span class="gensmall">Say yes if you want or have to send email via a server instead of the local mail function</span></td>
|
||||
<td class="row2"><input type="radio" name="smtp_delivery" value="1" {SMTP_YES}> Yes <input type="radio" name="smtp_delivery" value="0" {SMTP_NO}> No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">SMTP Server</td>
|
||||
<td class="row2"><input type="text" name="smtp_host" value="{SMTP_HOST}" size="25" maxlength="50"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">
|
||||
<input type="hidden" name="mode" value="config">
|
||||
<input type="submit" name="submit" value="Save Settings">
|
||||
</td>
|
||||
</tr>
|
||||
</table></form>
|
||||
|
||||
<br clear="all">
|
17
phpBB/templates/subSilver/admin/admin_message_body.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
<br clear="all" /><br />
|
||||
|
||||
<table width="85%" cellpadding="1" cellspacing="0" border="0" align="center">
|
||||
<tr>
|
||||
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<td class="cat" align="center"><span class="cattitle"><b>{MESSAGE_TITLE}</b></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2" width="100%" align="center"><span class="gen">{MESSAGE_TEXT}</span></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
27
phpBB/templates/subSilver/admin/admin_smile.tpl
Normal file
@ -0,0 +1,27 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_SMILEY_TITLE}</h1>
|
||||
|
||||
<P>{L_SMILEY_TEXT}</p>
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th colspan="5"><a href="{S_SMILEY_URL}&mode=add">{L_SMILEY_ADD}</a></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{L_CODE}</th>
|
||||
<th>{L_SMILE}</th>
|
||||
<th>{L_EMOT}</th>
|
||||
<th colspan="2">{L_ACTION}</th>
|
||||
</tr>
|
||||
<!-- BEGIN smiles -->
|
||||
<tr>
|
||||
<td class="row2">{smiles.CODE}</td>
|
||||
<td class="row2"><img src='{S_SMILEY_BASEDIR}/{smiles.URL}' alt='{smiles.CODE}'></td>
|
||||
<td class="row2">{smiles.EMOT}</td>
|
||||
<td class="row2"><a href="{S_SMILEY_URL}&mode=edit&id={smiles.ID}">{L_EDIT}</a></td>
|
||||
<td class="row2"><a href="{S_SMILEY_URL}&mode=delete&id={smiles.ID}">{L_DELETE}</a></td>
|
||||
</tr>
|
||||
<!-- END smiles -->
|
||||
</table>
|
54
phpBB/templates/subSilver/admin/admin_upgrade.tpl
Normal file
@ -0,0 +1,54 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>Upgrade</h1>
|
||||
|
||||
<p align="center"><a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpbb/phpBB2">Go take a look at Sourceforge CVS</a></p>
|
||||
|
||||
<script language="Javascript">
|
||||
function checkall(state)
|
||||
{
|
||||
for (var i = 0; i < document.form.elements.length; i++)
|
||||
{
|
||||
var e = document.form.elements[i];
|
||||
if ( isNaN(e.name) == false )
|
||||
{
|
||||
e.checked = state;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<form method="post" action="{S_UPGRADE_ACTION}" name="form">
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" colspan="3"><input type="checkbox" name="backup" CHECKED><small>Backup files before upgrading</small></td>
|
||||
<td align="right" colspan="2"><a href="javascript:document.form.submit()">Upgrade »</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><a href="javascript:checkall(true)">all</a>/<a href="javascript:checkall(false)">none</a></th>
|
||||
<th>Filename</th>
|
||||
<th>Local</th>
|
||||
<th>Remote</th>
|
||||
<th>Status</th>
|
||||
</tr>
|
||||
<!-- BEGIN dir -->
|
||||
<tr>
|
||||
<th colspan="5" align="left">DIR: <b>{dir.NAME}</b></th>
|
||||
</tr>
|
||||
<!-- BEGIN file -->
|
||||
<tr align="center">
|
||||
<td class="row2"><input type="checkbox" name="{dir.file.INPUTNAME}" value="{dir.file.INPUTVALUE}"><input type="hidden" name="version{dir.file.INPUTNAME}" value="{dir.file.REMOTE}"></td>
|
||||
<td class="row1" align="left"><a href="{dir.file.LINK}">{dir.file.NAME}</a></td>
|
||||
<td class="row2">{dir.file.LOCAL}</td>
|
||||
<td class="row1">{dir.file.REMOTE}</td>
|
||||
<td class="row2">{dir.file.STATUS}</td>
|
||||
</tr>
|
||||
<!-- END file -->
|
||||
<!-- END dir -->
|
||||
<tr>
|
||||
<td align="right" colspan="5"><a href="javascript:document.form.submit()">Upgrade »</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type="hidden" name="mode" value="upgrade">
|
||||
<input type="hidden" name="maxfile" value="{S_UPGRADE_MAXFILE}">
|
||||
</form>
|
17
phpBB/templates/subSilver/admin/admin_upgrade_results.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>Upgrade</h1>
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th>Filename</th>
|
||||
<th>Status</th>
|
||||
</tr>
|
||||
<!-- BEGIN files -->
|
||||
<tr>
|
||||
<td class="row1">{files.NAME}</td>
|
||||
<td class="row2">{files.STATUS}</td>
|
||||
</tr>
|
||||
<!-- END files -->
|
||||
</table>
|
||||
<br>
|
33
phpBB/templates/subSilver/admin/auth_forum_body.tpl
Normal file
@ -0,0 +1,33 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_AUTH_TITLE}</h1>
|
||||
|
||||
<p>{L_AUTH_EXPLAIN}</p>
|
||||
|
||||
<h2>{L_FORUM}: {FORUM_NAME}</h2>
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr><form method="post" action="{S_FORUMAUTH_ACTION}">
|
||||
<!-- BEGIN forum_auth_titles -->
|
||||
<th>{forum_auth_titles.CELL_TITLE}</th>
|
||||
<!-- END forum_auth_titles -->
|
||||
</tr>
|
||||
<tr>
|
||||
<!-- BEGIN forum_auth_data -->
|
||||
<td class="row1" align="center">{forum_auth_data.S_AUTH_LEVELS_SELECT}</td>
|
||||
<!-- END forum_auth_data -->
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="{S_COLUMN_SPAN}"><table width="100%" cellspacing="0" cellpadding="4" border="0">
|
||||
<tr>
|
||||
<td align="center"><span class="gensmall">{U_SWITCH_MODE}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT_CHANGES}"> <input type="reset" value="{L_RESET_CHANGES}"></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</form></tr>
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
17
phpBB/templates/subSilver/admin/auth_select_body.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_AUTH_TITLE}</h1>
|
||||
|
||||
<p>{L_AUTH_EXPLAIN}</p>
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td class="cat" align="center"><span class="cattitle"><b>{L_AUTH_SELECT}</b></span></td>
|
||||
</tr>
|
||||
<tr><form method="get" action="{S_AUTH_ACTION}">
|
||||
<td class="row1" align="center">{S_AUTH_SELECT} <input type="submit" value="{L_LOOK_UP}"> </td>
|
||||
</form></tr>
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
43
phpBB/templates/subSilver/admin/auth_ug_body.tpl
Normal file
@ -0,0 +1,43 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_AUTH_TITLE}</h1>
|
||||
|
||||
<h2>{L_USER_OR_GROUPNAME}: {USERNAME}</h2>
|
||||
|
||||
<form method="post" action="{S_AUTH_ACTION}">
|
||||
|
||||
<p>{USER_GROUP_MEMBERSHIPS}</p>
|
||||
|
||||
<h2>{L_PERMISSIONS}</h2>
|
||||
|
||||
<p>{L_AUTH_EXPLAIN}</p>
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th width="30%">{L_FORUM}</th>
|
||||
<!-- BEGIN acltype -->
|
||||
<th>{acltype.L_UG_ACL_TYPE}</th>
|
||||
<!-- END acltype -->
|
||||
<th>{L_MODERATOR_STATUS}</th>
|
||||
</tr>
|
||||
<!-- BEGIN forums -->
|
||||
<tr>
|
||||
<td class="{forums.ROW_CLASS}" align="center">{forums.FORUM_NAME}</td>
|
||||
<!-- BEGIN aclvalues -->
|
||||
<td class="{forums.ROW_CLASS}" align="center">{forums.aclvalues.S_ACL_SELECT}</td>
|
||||
<!-- END aclvalues -->
|
||||
<td class="{forums.ROW_CLASS}" align="center">{forums.S_MOD_SELECT}</td>
|
||||
</tr>
|
||||
<!-- END forums -->
|
||||
<tr>
|
||||
<td colspan="{S_COLUMN_SPAN}"><table width="100%" cellspacing="0" cellpadding="4" border="0">
|
||||
<tr>
|
||||
<td align="center"><span class="gensmall">{U_SWITCH_MODE}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT_CHANGES}" /> <input type="reset" value="{L_RESET_CHANGES}" /></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table></form>
|
32
phpBB/templates/subSilver/admin/category_edit_body.tpl
Normal file
@ -0,0 +1,32 @@
|
||||
<br clear="all" />
|
||||
|
||||
<h1>Edit Category</h1>
|
||||
|
||||
<p>Use this form to modify a category.</p>
|
||||
|
||||
<form action="{S_FORUM_ACTION}" method="POST">
|
||||
|
||||
<table width="99%" cellpadding="1" cellspacing="0" border="0" align="center">
|
||||
<tr>
|
||||
<td class="tablebg" width="100%"><table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle">Modify Category</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Category Name:</td>
|
||||
<td class="row2"><input type="text" size="25" name="cat_title" value="{CAT_TITLE}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2" colspan="2" align="center">
|
||||
<input type="hidden" name="mode" value="{S_NEWMODE}">
|
||||
<input type="hidden" name="cat_id" value="{S_CATID}">
|
||||
<input type="submit" name="submit" value="{BUTTONVALUE}">
|
||||
</td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
<br clear="all">
|
35
phpBB/templates/subSilver/admin/db_utils_backup_body.tpl
Normal file
@ -0,0 +1,35 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_DATABASE_BACKUP}</h1>
|
||||
|
||||
<P>{L_BACKUP_EXPLAIN}</p>
|
||||
|
||||
<form method="post" action="{S_DBUTILS_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th colspan="2">{L_BACKUP_OPTIONS}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2">{L_FULL_BACKUP}</td>
|
||||
<td class="row2"><input type="radio" name="backup_type" value="full" checked="checked" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_STRUCTURE_BACKUP}</td>
|
||||
<td class="row1"><input type="radio" name="backup_type" value="structure" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2">{L_DATA_BACKUP}</td>
|
||||
<td class="row2"><input type="radio" name="backup_type" value="data" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_ADDITIONAL_TABLES}</td>
|
||||
<td class="row1"><input type="text" name="additional_tables" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_GZIP_COMPRESS}</td>
|
||||
<td class="row1">{L_NO} <input type="radio" name="gzipcompress" value="0" checked="checked" /> {L_YES} <input type="radio" name="gzipcompress" value="1" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="backupstart" value="{L_START_BACKUP}" /></td>
|
||||
</tr>
|
||||
</table></form>
|
17
phpBB/templates/subSilver/admin/db_utils_restore_body.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_DATABASE_RESTORE}</h1>
|
||||
|
||||
<P>{L_RESTORE_EXPLAIN}</p>
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th>{L_SELECT_FILE}</th>
|
||||
</tr>
|
||||
<tr><form enctype="multipart/form-data" method="post" action="{S_DBUTILS_ACTION}">
|
||||
<td class="row1" align="center"> <input type="file" name="backup_file"> {S_HIDDEN_FIELDS}<input type="submit" name="restore_start" value="{L_START_RESTORE}"> </td>
|
||||
</form></tr>
|
||||
</table></div>
|
||||
|
||||
<br clear="all" />
|
38
phpBB/templates/subSilver/admin/forum_delete_body.tpl
Normal file
@ -0,0 +1,38 @@
|
||||
<br clear="all" />
|
||||
|
||||
<h1>Delete</h1>
|
||||
|
||||
<p>The form below will allow you to delete a forum/category and decide where you want to put all topics/forums inside that forum/category.</p>
|
||||
|
||||
<form action="{S_FORUM_ACTION}" method="POST">
|
||||
|
||||
<table width="99%" cellpadding="1" cellspacing="0" border="0" align="center">
|
||||
<tr>
|
||||
<td class="tablebg" width="100%"><table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle">Delete</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Name:</td>
|
||||
<td class="row2"><span class="row1">{NAME}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Move everything to:</td>
|
||||
<td class="row2">
|
||||
{S_SELECT_TO}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2" colspan="2" align="center">
|
||||
<input type="hidden" name="mode" value="{S_NEWMODE}">
|
||||
<input type="hidden" name="from_id" value="{S_FROM_ID}">
|
||||
<input type="submit" name="submit" value="{BUTTONVALUE}">
|
||||
</td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
<br clear="all">
|
71
phpBB/templates/subSilver/admin/forum_edit_body.tpl
Normal file
@ -0,0 +1,71 @@
|
||||
<br clear="all" />
|
||||
|
||||
<h1>Edit Forum</h1>
|
||||
|
||||
<p>The form below will allow you to customize all the general board options. For User and Forum configurations use the related links on the left hand side.</p>
|
||||
|
||||
<form action="{S_FORUM_ACTION}" method="POST">
|
||||
|
||||
<table width="99%" cellpadding="1" cellspacing="0" border="0" align="center">
|
||||
<tr>
|
||||
<td class="tablebg" width="100%"><table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle">General Forum Settings</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Forum Name:</td>
|
||||
<td class="row2"><input type="text" size="25" name="forumname" value="{FORUMNAME}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Description:</td>
|
||||
<td class="row2"><textarea ROWS="5" COLS="45" WRAP="VIRTUAL" name="forumdesc">{DESCRIPTION}</TEXTAREA></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Category:</td>
|
||||
<td class="row2">
|
||||
<select name="cat_id">
|
||||
{S_CATLIST}
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Forum Status:</td>
|
||||
<td class="row2">
|
||||
<select name="forumstatus">
|
||||
{S_STATUSLIST}
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">Auto Pruning:</td>
|
||||
<td class="row2">
|
||||
<table>
|
||||
<tr>
|
||||
<td align="right" valign="middle">{L_ENABLED}</td>
|
||||
<td align="left" valign="middle"><input type="checkbox" name="prune_enable" value="1" {S_PRUNE_EN}></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="middle">{L_PRUNE_DAYS}</td>
|
||||
<td align="left" valign="middle"> <input type="text" name="prune_days" value="{S_PRUNE_DAYS}" size="5"> {L_DAYS}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="middle">{L_PRUNE_FREQ}</td>
|
||||
<td align="left" valign="middle"> <input type="text" name="prune_freq" value="{S_PRUNE_FREQ}" size="5"> {L_DAYS}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2" colspan="2" align="center">
|
||||
<input type="hidden" name="mode" value="{S_NEWMODE}">
|
||||
<input type="hidden" name="forum_id" value="{S_FORUMID}">
|
||||
<input type="submit" name="submit" value="{BUTTONVALUE}">
|
||||
</td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
<br clear="all">
|
17
phpBB/templates/subSilver/admin/forum_prune_body.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_FORUM_PRUNE}</h1>
|
||||
|
||||
<p>{L_FORUM_PRUNE_EXPLAIN}</p>
|
||||
|
||||
<h2>{L_FORUM}: {FORUM_NAME}</h2>
|
||||
|
||||
<form method="post" action="{S_FORUMPRUNE_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td class="row1"> {S_PRUNE_DATA} </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" align="center">{S_HIDDEN_VARS}<input type="submit" name="doprune" value="{L_DO_PRUNE}"></td>
|
||||
</tr>
|
||||
</table></form>
|
23
phpBB/templates/subSilver/admin/forum_prune_result_body.tpl
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_FORUM_PRUNE}</h1>
|
||||
|
||||
<p>{L_PRUNE_RESULT}</p>
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th>{L_FORUM}</th>
|
||||
<th>{L_TOPICS_PRUNED}</th>
|
||||
<th>{L_POSTS_PRUNED}</th>
|
||||
</tr>
|
||||
<!-- BEGIN prune_results -->
|
||||
<tr>
|
||||
<td class="{prune_results.ROW_CLASS}" align="center">{prune_results.FORUM_NAME}</td>
|
||||
<td class="{prune_results.ROW_CLASS}" align="center">{prune_results.FORUM_TOPICS}</td>
|
||||
<td class="{prune_results.ROW_CLASS}" align="center">{prune_results.FORUM_POSTS}</td>
|
||||
</tr>
|
||||
<!-- END prune_results -->
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
15
phpBB/templates/subSilver/admin/forum_prune_select_body.tpl
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_FORUM_PRUNE}</h1>
|
||||
|
||||
<form method="get" action="{S_FORUMPRUNE_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td class="cat" align="center"><span class="cattitle"><b>{L_SELECT_FORUM}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" align="center">{S_FORUMS_SELECT} <input type="submit" name="pruneset" value="{L_LOOK_UP}"> </td>
|
||||
</tr>
|
||||
</table></form>
|
||||
|
||||
<br clear="all" />
|
33
phpBB/templates/subSilver/admin/forums_body.tpl
Normal file
@ -0,0 +1,33 @@
|
||||
<p>Use this page to manage your forums and categories</p>
|
||||
|
||||
|
||||
{S_FORMSTART}
|
||||
<div align="center"><table width="98%" cellpadding="1" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="tablebg"><table width="100%" cellpadding="3" cellspacing="1" border="0">
|
||||
<!-- BEGIN catrow -->
|
||||
<tr>
|
||||
<td class="cat" colspan="4"><span class="cattitle"><b><a href="{catrow.U_VIEWCAT}">{catrow.CAT_DESC}</a></b></span>{catrow.S_ADDCAT}</span></td>
|
||||
<td class="cat" align="center" valign="middle"><span class="gen">{catrow.CAT_EDIT}</span></td>
|
||||
<td class="cat" align="center" valign="middle"><span class="gen">{catrow.CAT_DELETE}</span></td>
|
||||
<td class="cat" align="center" valign="middle"><span class="gen">{catrow.CAT_UP} {catrow.CAT_DOWN}</span></td>
|
||||
<td class="cat" align="center" valign="middle"><span class="gen"> </span></td>
|
||||
|
||||
</tr>{catrow.S_ADDCAT_ENDFORM}
|
||||
<!-- BEGIN forumrow -->
|
||||
<tr>
|
||||
<td class="row1" align="center" valign="middle">{catrow.forumrow.FOLDER}</td>
|
||||
<td class="row2"><span class="gen">{catrow.forumrow.S_ADDFORUM}{catrow.forumrow.S_NEWFORUM}<a href="{catrow.forumrow.U_VIEWFORUM}" target="_new">{catrow.forumrow.FORUM_NAME}</a></span><br><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td>
|
||||
{catrow.forumrow.S_ADDFORUM_ENDFORM}
|
||||
<td class="row1" align="center" valign="middle"><span class="gen">{catrow.forumrow.NUM_TOPICS}</span></td>
|
||||
<td class="row2" align="center" valign="middle"><span class="gen">{catrow.forumrow.NUM_POSTS}</span></td>
|
||||
<td class="row1" align="center" valign="middle"><span class="gen">{catrow.forumrow.FORUM_EDIT}</span></td>
|
||||
<td class="row2" align="center" valign="middle"><span class="gen">{catrow.forumrow.FORUM_DELETE}</span></td>
|
||||
<td class="row1" align="center" valign="middle"><span class="gen">{catrow.forumrow.FORUM_UP} {catrow.forumrow.FORUM_DOWN}</span></td>
|
||||
<td class="row2" align="center" valign="middle"><span class="gen">{catrow.forumrow.FORUM_SYNC}</span></td>
|
||||
</tr>
|
||||
<!-- END forumrow -->
|
||||
<!-- END catrow -->
|
||||
</table></td>
|
||||
</tr>
|
||||
</table></div>
|
43
phpBB/templates/subSilver/admin/group_edit_body.tpl
Normal file
@ -0,0 +1,43 @@
|
||||
|
||||
<form action="{S_GROUP_ACTION}" method="post"><table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left"><span class="gensmall"><a href="{U_INDEX}">{SITENAME} {L_INDEX}</a></span></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table width="98%" cellpadding="1" cellspacing="0" border="0" align="center">
|
||||
<tr>
|
||||
<td class="tablebg"><table border="0" cellpadding="3" cellspacing="1" width="100%">
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle"><b>{L_GROUP_INFO}</b></span><br /><span class="gensmall">{L_ITEMS_REQUIRED}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" width="38%"><span class="gen">{L_GROUP_NAME}:</span></td>
|
||||
<td class="row2"><input type="text" name="group_name" size="35" maxlength="40" value="{S_GROUP_NAME}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_GROUP_DESCRIPTION}:</span></td>
|
||||
<td class="row2"><textarea name="group_description" rows=5 cols=51>{S_GROUP_DESCRIPTION}</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" width="38%"><span class="gen">{L_GROUP_MODERATOR}:</span></td>
|
||||
<td class="row2">{S_GROUP_MODERATOR}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" width="38%"><span class="gen">{L_GROUP_STATUS}:</span></td>
|
||||
<td class="row2"><input type="radio" name="group_type" value="1" {S_GROUP_OPEN_CHECKED} />{L_GROUP_OPEN} <input type="radio" name="group_type" value="0" {S_GROUP_CLOSED_CHECKED} /> {L_GROUP_CLOSED}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" width="38%"><span class="gen">{L_GROUP_DELETE}:</span></td>
|
||||
<td class="row2"><input type="checkbox" name="deletegroup" value="1">{L_GROUP_DELETE_CHECK}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center"><span class="cattitle"><input type="submit" name="submit" value="{L_SUBMIT}" /> <input type="reset" value="{L_RESET}" /></span></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
|
||||
<input type="hidden" name="mode" value="{S_GROUP_MODE}" />
|
||||
<input type="hidden" name="updategroup" value="update" />
|
||||
<input type="hidden" name="group_id" value="{GROUP_ID}" />
|
||||
</table></form>
|
20
phpBB/templates/subSilver/admin/group_select_body.tpl
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_GROUP_TITLE}</h1>
|
||||
|
||||
<p>{L_GROUP_EXPLAIN}</p>
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td class="cat" align="center"><span class="cattitle"><b>{L_GROUP_SELECT}</b></span></td>
|
||||
</tr>
|
||||
<tr><form method="post" action="{S_GROUP_ACTION}"><input type="hidden" name="mode" value="editgroup">
|
||||
<td class="row1" align="center">{S_GROUP_SELECT} <input type="submit" value="{L_LOOK_UP}"> </td>
|
||||
</form></tr>
|
||||
<tr>
|
||||
<td class="row2" align="center"><a href="admin_groups.php?mode=newgroup">{L_GROUP_NEW}</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
10
phpBB/templates/subSilver/admin/index.htm
Normal file
@ -0,0 +1,10 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" text="#000000">
|
||||
|
||||
</body>
|
||||
</html>
|
90
phpBB/templates/subSilver/admin/index_body.tpl
Normal file
@ -0,0 +1,90 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_WELCOME}</h1>
|
||||
|
||||
<p>{L_ADMIN_INTRO}</p>
|
||||
|
||||
<h1>{L_FORUM_STATS}</h1>
|
||||
|
||||
<table width="99%" cellspacing="0" cellpadding="2" border="0">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<th width="25%" nowrap height="25">{L_STATISTIC}</th>
|
||||
<th width="25%" height="25">{L_VALUE}</th>
|
||||
<th width="25%" nowrap height="25">{L_STATISTIC}</th>
|
||||
<th width="25%" height="25">{L_VALUE}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" nowrap>{L_NUMBER_POSTS}:</td>
|
||||
<td class="row2"><b>{NUMBER_OF_POSTS}</b></td>
|
||||
<td class="row1" nowrap>{L_POSTS_PER_DAY}:</td>
|
||||
<td class="row2"><b>{POSTS_PER_DAY}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" nowrap>{L_NUMBER_TOPICS}:</td>
|
||||
<td class="row2"><b>{NUMBER_OF_TOPICS}</b></td>
|
||||
<td class="row1" nowrap>{L_TOPICS_PER_DAY}:</td>
|
||||
<td class="row2"><b>{TOPICS_PER_DAY}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" nowrap>{L_NUMBER_USERS}:</td>
|
||||
<td class="row2"><b>{NUMBER_OF_USERS}</b></td>
|
||||
<td class="row1" nowrap>{L_USERS_PER_DAY}:</td>
|
||||
<td class="row2"><b>{USERS_PER_DAY}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" nowrap>{L_BOARD_STARTED}:</td>
|
||||
<td class="row2"><b>{START_DATE}</b></td>
|
||||
<td class="row1" nowrap>{L_AVATAR_DIR_SIZE}:</td>
|
||||
<td class="row2"><b>{AVATAR_DIR_SIZE}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" nowrap>{L_DB_SIZE}:</td>
|
||||
<td class="row2"><b>{DB_SIZE}</b></td>
|
||||
<td class="row1" nowrap> </td>
|
||||
<td class="row2"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h1>{L_WHO_IS_ONLINE}</h1>
|
||||
|
||||
<table width="99%" cellspacing="0" cellpadding="2" border="0">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<th width="25%" height="25"> {L_USERNAME} </th>
|
||||
<th width="25%" height="25"> {L_LAST_UPDATE} </th>
|
||||
<th width="25%" height="25"> {L_LOCATION} </th>
|
||||
<th width="25%" height="25"> {L_IP_ADDRESS} </th>
|
||||
</tr>
|
||||
<!-- BEGIN userrow -->
|
||||
<tr>
|
||||
<td width="25%" class="{userrow.ROW_CLASS}"> <span class="gen"><a href="{userrow.U_USER_PROFILE}">{userrow.USERNAME}</a></span> </td>
|
||||
<td width="25%" align="center" class="{userrow.ROW_CLASS}"> <span class="gen">{userrow.LASTUPDATE}</span> </td>
|
||||
<td width="25%" class="{userrow.ROW_CLASS}"> <span class="gen">{userrow.LOCATION}</span> </td>
|
||||
<td width="25%" class="{userrow.ROW_CLASS}"> <span class="gen">{userrow.IP_ADDRESS}</span> </td>
|
||||
</tr>
|
||||
<!-- END userrow -->
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br clear="all" />
|
17
phpBB/templates/subSilver/admin/index_frameset.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>phpBB Administration</title>
|
||||
</head>
|
||||
|
||||
<frameset cols="150,*" scrolling="no" border="0">
|
||||
<frame src="{S_FRAME_NAV}" name="nav">
|
||||
<frame src="{S_FRAME_MAIN}" name="main">
|
||||
</frameset>
|
||||
|
||||
<noframes>
|
||||
<body bgcolor="#FFFFFF" text="#000000">
|
||||
<p>Sorry, your browser doesn't seem to support frames</p>
|
||||
</body>
|
||||
</noframes>
|
||||
|
||||
</html>
|
51
phpBB/templates/subSilver/admin/index_navigate.tpl
Normal file
@ -0,0 +1,51 @@
|
||||
|
||||
<table width="100%" cellpadding="4" cellspacing="0" border="0" align="center">
|
||||
<tr>
|
||||
<td align="center" ><a href="{U_BOARD_INDEX}" target="_top"><img src="../templates/subSilver/images/logo_phpBB_med.gif" border="0" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" >
|
||||
<table width="99%" cellspacing="0" cellpadding="2" border="0">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<th height="25" class="secondary"><b>Forum Configuration</b></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="genmed"><a href="{U_ADMIN_INDEX}" target="main" class="genmed">{L_ADMIN_INDEX}</a></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="genmed"><a href="{U_BOARD_INDEX}" target="_top" class="genmed">Forum Home</a></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="genmed"><a href="{U_BOARD_INDEX}" target="main" class="genmed">Preview Forum</a></span></td>
|
||||
</tr>
|
||||
<!-- BEGIN catrow -->
|
||||
<tr>
|
||||
<td height="28" class="cat"><span class="cattitle">{catrow.CATNAME}</span></td>
|
||||
</tr>
|
||||
<!-- BEGIN actionrow -->
|
||||
<tr>
|
||||
<td class="row1"><span class="genmed"><a href="{catrow.actionrow.FILE}" target="main" class="genmed">{catrow.actionrow.ACTIONNAME}</a></span>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- END actionrow -->
|
||||
<!-- END catrow -->
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
25
phpBB/templates/subSilver/admin/page_footer.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
<!--
|
||||
|
||||
Please note that the following copyright notice
|
||||
MUST be displayed on each and every page output
|
||||
by phpBB. You may alter the font, colour etc. but
|
||||
you CANNOT remove it, nor change it so that it be,
|
||||
to all intents and purposes, invisible. You may ADD
|
||||
your own notice to it should you have altered the
|
||||
code but you may not replace it. The hyperlink must
|
||||
also remain intact. These conditions are part of the
|
||||
licence this software is released under. See the
|
||||
LICENCE and README files for more information.
|
||||
|
||||
The phpBB Group : 2001
|
||||
|
||||
//-->
|
||||
<div align="center">
|
||||
<span class="gensmall">Powered By <a href="http://www.phpbb.com/" target="_phpbb">phpBB {PHPBB_VERSION}</a> © 2001 phpBB Group</span>
|
||||
</div>
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
</body>
|
||||
</html>
|
11
phpBB/templates/subSilver/admin/page_header.tpl
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<meta name="MSSmartTagsPreventParsing" content="TRUE">
|
||||
<link rel="stylesheet" href="../templates/subSilver/admin_styles.css" type="text/css">
|
||||
|
||||
{META}
|
||||
<head>
|
||||
<title>phpBB - {SITENAME}</title>
|
||||
|
||||
</head>
|
||||
<body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
19
phpBB/templates/subSilver/admin/smile_action.tpl
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
<br clear="all" /><br />
|
||||
|
||||
<table width="85%" cellpadding="1" cellspacing="0" border="0" align="center">
|
||||
<tr>
|
||||
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<td class="cat" align="center"><span class="cattitle"><b>{L_SMILEY_TITLE}</b></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2" width="100%" align="center"><span class="gen">{L_SMILEY_ACTION}</span><br>
|
||||
<a href='{S_SMILEY_URL}'>{L_SMILEY_TEXT}</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
42
phpBB/templates/subSilver/admin/smile_edit.tpl
Normal file
@ -0,0 +1,42 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_SMILEY_TITLE}</h1>
|
||||
|
||||
<P>{L_SMILEY_INSTR}</p>
|
||||
<script language="javascript">
|
||||
<!--
|
||||
function update_smiley(newimage)
|
||||
{
|
||||
document.smiley_image.src = '{S_SMILEY_BASEDIR}/' + newimage;
|
||||
}
|
||||
-->
|
||||
</script>
|
||||
<form method="post" action="{S_SMILEY_ACTION}">
|
||||
<input type="hidden" name="mode" value="{S_HIDDEN_VAR}">
|
||||
<input type="hidden" name="id" value="{SMILEY_ID_VAL}">
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th colspan="2">{L_SMILEY_CONFIG}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2">{L_SMILEY_CODE_LBL}</td>
|
||||
<td class="row2"><input type="text" name="code" value="{SMILEY_CODE_VAL}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_SMILEY_URL_LBL}</td>
|
||||
<td class="row1"><select name="url" onchange="update_smiley(this.options[selectedIndex].value);">
|
||||
<!-- BEGIN smile_images -->
|
||||
<option value="{smile_images.FILENAME}" {smile_images.SELECTED}>{smile_images.FILENAME}</option>
|
||||
<!-- END smile_images -->
|
||||
</select>
|
||||
<img name='smiley_image' src="{S_SMILEY_BASEDIR}/{SMILEY_URL_VAL}" border=0 alt="smiley"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2">{L_SMILEY_EMOTION_LBL}</td>
|
||||
<td class="row2"><input type="text" name="emotion" value="{SMILEY_EMOTION}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center"><input type="submit" value="{L_SUBMIT}" /></td>
|
||||
</tr>
|
||||
</table></form>
|
38
phpBB/templates/subSilver/admin/smile_edit_body.tpl
Normal file
@ -0,0 +1,38 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_SMILEY_TITLE}</h1>
|
||||
|
||||
<p>{L_SMILEY_EXPLAIN}</p>
|
||||
|
||||
<script language="javascript" type="text/javascript">
|
||||
<!--
|
||||
|
||||
function update_smiley(newimage)
|
||||
{
|
||||
document.smiley_image.src = "{S_SMILEY_BASEDIR}/" + newimage;
|
||||
}
|
||||
|
||||
// -->
|
||||
</script>
|
||||
|
||||
<form method="post" action="{S_SMILEY_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th colspan="2">{L_SMILEY_CONFIG}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2">{L_SMILEY_CODE}</td>
|
||||
<td class="row2"><input type="text" name="smile_code" value="{SMILEY_CODE}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_SMILEY_URL}</td>
|
||||
<td class="row1"><select name="smile_url" onchange="update_smiley(this.options[selectedIndex].value);">{S_FILENAME_OPTIONS}</select> <img name="smiley_image" src="{SMILEY_IMG}" border="0" alt="" /> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2">{L_SMILEY_EMOTION}</td>
|
||||
<td class="row2"><input type="text" name="smile_emotion" value="{SMILEY_EMOTICON}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" value="{L_SUBMIT}" /></td>
|
||||
</tr>
|
||||
</table></form>
|
27
phpBB/templates/subSilver/admin/smile_list_body.tpl
Normal file
@ -0,0 +1,27 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_SMILEY_TITLE}</h1>
|
||||
|
||||
<P>{L_SMILEY_TEXT}</p>
|
||||
|
||||
<form method="GET" action="{S_SMILEY_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th>{L_CODE}</th>
|
||||
<th>{L_SMILE}</th>
|
||||
<th>{L_EMOT}</th>
|
||||
<th colspan="2">{L_ACTION}</th>
|
||||
</tr>
|
||||
<!-- BEGIN smiles -->
|
||||
<tr>
|
||||
<td class="row2">{smiles.CODE}</td>
|
||||
<td class="row2"><img src="{smiles.SMILEY_IMG}" alt="{smiles.CODE}" /></td>
|
||||
<td class="row2">{smiles.EMOT}</td>
|
||||
<td class="row2"><a href="{smiles.U_SMILEY_EDIT}">{L_EDIT}</a></td>
|
||||
<td class="row2"><a href="{smiles.U_SMILEY_DELETE}">{L_DELETE}</a></td>
|
||||
</tr>
|
||||
<!-- END smiles -->
|
||||
<tr>
|
||||
<td class="cat" colspan="5" align="center">{S_HIDDEN_FIELDS}<input type="submit" value="{L_SMILEY_ADD}" /></td>
|
||||
</tr>
|
||||
</table></form>
|
17
phpBB/templates/subSilver/admin/smile_result_body.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
<br clear="all" /><br />
|
||||
|
||||
<table width="85%" cellpadding="1" cellspacing="0" border="0" align="center">
|
||||
<tr>
|
||||
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<td class="cat" align="center"><span class="cattitle"><b>{L_SMILEY_TITLE}</b></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2" width="100%" align="center"><span class="gen">{L_SMILEY_ACTION}</span><br /><a href="{U_SMILEY_ADMIN}">{L_SMILEY_TEXT}</a></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
37
phpBB/templates/subSilver/admin/user_ban_body.tpl
Normal file
@ -0,0 +1,37 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_BAN_TITLE}</h1>
|
||||
|
||||
<p>{L_BAN_EXPLAIN}</p>
|
||||
|
||||
<form method="post" action="{S_BAN_ACTION}"><table width="80%" cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{L_BAN_USER}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_USERNAME}: <br /><span class="gensmall">{L_BAN_USER_EXPLAIN}</span></td>
|
||||
<td class="row2">{S_USERLIST_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{L_BAN_IP}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_IP_OR_HOSTNAME}: <br /><span class="gensmall">{L_BAN_IP_EXPLAIN}</span></td>
|
||||
<td class="row2"><input type="text" name="ip" size="35" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{L_BAN_EMAIL}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_EMAIL_ADDRESS}: <br /><span class="gensmall">{L_BAN_EMAIL_EXPLAIN}</span></td>
|
||||
<td class="row2"><input type="text" name="email" size="35" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" /> <input type="reset" value="{L_RESET}" /></td>
|
||||
</tr>
|
||||
</table></form>
|
||||
|
||||
<p>{L_BAN_EXPLAIN_WARN}</p>
|
||||
|
||||
<br clear="all" />
|
146
phpBB/templates/subSilver/admin/user_edit_body.tpl
Normal file
@ -0,0 +1,146 @@
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_USER_TITLE}</h1>
|
||||
|
||||
<p>{L_USER_EXPLAIN}</p>
|
||||
|
||||
<form action="{S_PROFILE_ACTION}" method="post"><table width="98%" cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle"><b>{L_REGISTRATION_INFO}</b></span><br /><span class="gensmall">{L_ITEMS_REQUIRED}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" width="38%"><span class="gen">{L_USERNAME}: *</span></td>
|
||||
<td class="row2"><input type="text" name="username" size="35" maxlength="40" value="{USERNAME}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_EMAIL_ADDRESS}: *</span></td>
|
||||
<td class="row2"><input type="text" name="email" size="35" maxlength="255" value="{EMAIL}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_PASSWORD}: *</span><br /><span class="gensmall">{L_PASSWORD_IF_CHANGED}</span></td>
|
||||
<td class="row2"><input type="password" name="password" size="35" maxlength="100" value="{PASSWORD}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_CONFIRM} {L_PASSWORD}: * </span><br /><span class="gensmall">{L_PASSWORD_CONFIRM_IF_CHANGED}</span></td>
|
||||
<td class="row2"><input type="password" name="password_confirm" size="35" maxlength="100" value="{PASSWORD_CONFIRM}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle"><b>{L_PROFILE_INFO}</b></span><br /><span class="gensmall">{L_PROFILE_INFO_NOTICE}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_ICQ_NUMBER}:</span></td>
|
||||
<td class="row2"><input type="text" name="icq" size="10" maxlength="15" value="{ICQ}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_AIM}:</span></td>
|
||||
<td class="row2"><input type="text" name="aim" size="20" maxlength="255" value="{AIM}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_MESSENGER}:</span></td>
|
||||
<td class="row2"><input type="text" name="msn" size="20" maxlength="255" value="{MSN}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_YAHOO}:</span></td>
|
||||
<td class="row2"><input type="text" name="yim" size="20" maxlength="255" value="{YIM}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_WEBSITE}:</span></td>
|
||||
<td class="row2"><input type="text" name="website" size="35" maxlength="255" value="{WEBSITE}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_LOCATION}:</span></td>
|
||||
<td class="row2"><input type="text" name="location" size="35" maxlength="100" value="{LOCATION}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_OCCUPATION}:</span></td>
|
||||
<td class="row2"><input type="text" name="occupation" size="35" maxlength="100" value="{OCCUPATION}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_INTERESTS}:</span></td>
|
||||
<td class="row2"><input type="text" name="interests" size="35" maxlength="150" value="{INTERESTS}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_SIGNATURE}:</span><br /><span class="gensmall">{L_SIGNATURE_EXPLAIN}<br /><br />{L_HTML_IS} <u>{HTML_STATUS}</u><br />{L_BBCODE_IS} <u>{BBCODE_STATUS}</u><br />{L_SMILIES_ARE} <u>{SMILIES_STATUS}</u></span></td>
|
||||
<td class="row2"><textarea name="signature" rows="6" cols="45">{SIGNATURE}</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle"><b>{L_PREFERENCES}</b></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_PUBLIC_VIEW_EMAIL}:</span></td>
|
||||
<td class="row2"><input type="radio" name="viewemail" value="1" {VIEW_EMAIL_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="viewemail" value="0" {VIEW_EMAIL_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_HIDE_USER}:</span></td>
|
||||
<td class="row2"><input type="radio" name="hideonline" value="1" {HIDE_USER_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="hideonline" value="0" {HIDE_USER_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_NOTIFY_ON_PRIVMSG}:</span></td>
|
||||
<td class="row2"><input type="radio" name="notifypm" value="1" {NOTIFY_PM_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="notifypm" value="0" {NOTIFY_PM_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_ALWAYS_ADD_SIGNATURE}:</span></td>
|
||||
<td class="row2"><input type="radio" name="attachsig" value="1" {ALWAYS_ADD_SIGNATURE_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="attachsig" value="0" {ALWAYS_ADD_SIGNATURE_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_ALWAYS_ALLOW_BBCODE}:</span></td>
|
||||
<td class="row2"><input type="radio" name="allowbbcode" value="1" {ALWAYS_ALLOW_BBCODE_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="allowbbcode" value="0" {ALWAYS_ALLOW_BBCODE_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_ALWAYS_ALLOW_HTML}:</span></td>
|
||||
<td class="row2"><input type="radio" name="allowhtml" value="1" {ALWAYS_ALLOW_HTML_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="allowhtml" value="0" {ALWAYS_ALLOW_HTML_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_ALWAYS_ALLOW_SMILIES}:</span></td>
|
||||
<td class="row2"><input type="radio" name="allowsmilies" value="1" {ALWAYS_ALLOW_SMILIES_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="allowsmilies" value="0" {ALWAYS_ALLOW_SMILIES_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_BOARD_LANGUAGE}:</span></td>
|
||||
<td class="row2">{LANGUAGE_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_BOARD_STYLE}:</span></td>
|
||||
<td class="row2">{STYLE_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_TIMEZONE}:</span></td>
|
||||
<td class="row2">{TIMEZONE_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_DATE_FORMAT}:</span><br /><span class="gensmall">{L_DATE_FORMAT_EXPLAIN}</span></td>
|
||||
<td class="row2"><input type="text" name="dateformat" value="{DATE_FORMAT}" maxlength="16" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle"><b>{L_AVATAR_PANEL}</b></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" colspan="2" align="center"><table width="70%" cellspacing="2" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td width="65%"><span class="gensmall">{L_AVATAR_EXPLAIN}</span></td>
|
||||
<td align="center"><span class="gensmall">{L_CURRENT_IMAGE}</span><br />{AVATAR}<br /><input type="checkbox" name="avatardel" /> <span class="gensmall">{L_DELETE_AVATAR}</span></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2"><span class="cattitle"><B>{L_SPECIAL}</b></span><br /><span class="gensmall">{L_SPECIAL_EXPLAIN}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_USER_ACTIVE}:</span></td>
|
||||
<td class="row2"><input type="radio" name="user_status" value="1" {USER_ACTIVE_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="user_status" value="0" {USER_ACTIVE_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_ALLOW_PM}:</span></td>
|
||||
<td class="row2"><input type="radio" name="user_allowpm" value="1" {ALLOW_PM_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="user_allowpm" value="0" {ALLOW_PM_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_ALLOW_AVATAR}:</span></td>
|
||||
<td class="row2"><input type="radio" name="user_allowavatar" value="1" {ALLOW_AVATAR_YES} /> <span class="gen">{L_YES}</span> <input type="radio" name="user_allowavatar" value="0" {ALLOW_AVATAR_NO} /> <span class="gen">{L_NO}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_DELETE_USER}?</span></td>
|
||||
<td class="row2"><input type="checkbox" name="deleteuser">{L_DELETE_USER_EXPLAIN}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" /> <input type="reset" value="{L_RESET}" /></td>
|
||||
</tr>
|
||||
</table></form>
|
34
phpBB/templates/subSilver/admin/user_email.tpl
Normal file
@ -0,0 +1,34 @@
|
||||
<br clear="all" />
|
||||
<b>{L_NOTICE}</b>
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_EMAIL_TITLE}</h1>
|
||||
|
||||
<p>{L_EMAIL_EXPLAIN}</p>
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td class="cat" align="center"><span class="cattitle"><b>{L_COMPOSE}</b></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<form method="post" action="{S_USER_ACTION}">
|
||||
<td class="row1" align="center">{L_GROUP_SELECT} {S_GROUP_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2" align="center">{L_EMAIL_SUBJECT} <input type="text" name="{S_EMAIL_SUBJECT}"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row3" align="center">{L_EMAIL_MSG}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row4" align="center">
|
||||
<textarea name="{S_EMAIL_MSG}" ROWS = 15 COLS = 40></textarea>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row5" align="center"><input type="submit" value="{L_EMAIL}" name="submit"> </td>
|
||||
</tr>
|
||||
</form>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
17
phpBB/templates/subSilver/admin/user_select_body.tpl
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_USER_TITLE}</h1>
|
||||
|
||||
<p>{L_USER_EXPLAIN}</p>
|
||||
|
||||
<table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td class="cat" align="center"><span class="cattitle"><b>{L_USER_SELECT}</b></span></td>
|
||||
</tr>
|
||||
<tr><form method="get" action="{S_USER_ACTION}">
|
||||
<td class="row1" align="center">{S_USER_SELECT} <input type="submit" value="{L_LOOK_UP}" name="submit"> </td>
|
||||
</form></tr>
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
35
phpBB/templates/subSilver/admin/user_unban_body.tpl
Normal file
@ -0,0 +1,35 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_BAN_TITLE}</h1>
|
||||
|
||||
<p>{L_BAN_EXPLAIN}</p>
|
||||
|
||||
<form method="post" action="{S_BAN_ACTION}"><table width="80%" cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{L_BAN_USER}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_USERNAME}: <br /><span class="gensmall">{L_BAN_USER_EXPLAIN}</span></td>
|
||||
<td class="row2">{S_USERLIST_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{L_BAN_IP}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_IP_OR_HOSTNAME}: <br /><span class="gensmall">{L_BAN_IP_EXPLAIN}</span></td>
|
||||
<td class="row2">{S_IPLIST_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{L_BAN_EMAIL}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_EMAIL_ADDRESS}: <br /><span class="gensmall">{L_BAN_EMAIL_EXPLAIN}</span></td>
|
||||
<td class="row2">{S_EMAILLIST_SELECT}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" /> <input type="reset" value="{L_RESET}" /></td>
|
||||
</tr>
|
||||
</table></form>
|
||||
|
||||
<br clear="all" />
|
23
phpBB/templates/subSilver/admin/words_edit_body.tpl
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_WORDS_TITLE}</h1>
|
||||
|
||||
<p>{L_WORDS_TEXT}</p>
|
||||
|
||||
<form method="post" action="{S_WORDS_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th colspan="2">{L_WORD_CENSOR}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row2">{L_WORD}</td>
|
||||
<td class="row2"><input type="text" name="word" value="{WORD}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1">{L_REPLACEMENT}</td>
|
||||
<td class="row1"><input type="text" name="replacement" value="{REPLACEMENT}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="save" value="{L_SUBMIT}" /></td>
|
||||
</tr>
|
||||
</table></form>
|
25
phpBB/templates/subSilver/admin/words_list_body.tpl
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<h1>{L_WORDS_TITLE}</h1>
|
||||
|
||||
<P>{L_WORDS_TEXT}</p>
|
||||
|
||||
<form method="POST" action="{S_WORDS_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center">
|
||||
<tr>
|
||||
<th>{L_WORD}</th>
|
||||
<th>{L_REPLACEMENT}</th>
|
||||
<th colspan="2">{L_ACTION}</th>
|
||||
</tr>
|
||||
<!-- BEGIN words -->
|
||||
<tr>
|
||||
<td class="row2" align="center">{words.WORD}</td>
|
||||
<td class="row2" align="center">{words.REPLACEMENT}</td>
|
||||
<td class="row2"><a href="{words.U_WORD_EDIT}">{L_EDIT}</a></td>
|
||||
<td class="row2"><a href="{words.U_WORD_DELETE}">{L_DELETE}</a></td>
|
||||
</tr>
|
||||
<!-- END words -->
|
||||
<tr>
|
||||
<td colspan="5" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="add" value="{L_ADD_WORD}" /></td>
|
||||
</tr>
|
||||
</table></form>
|
79
phpBB/templates/subSilver/agreement.tpl
Normal file
@ -0,0 +1,79 @@
|
||||
|
||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table width="100%" border="0" cellspacing="1" cellpadding="3">
|
||||
<tr>
|
||||
<th height="25" valign="middle" class="secondary"><b>{SITENAME} - Forums Registration
|
||||
Agreement</b></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="row1">
|
||||
<table width="80%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td><span class="postbody"><br />
|
||||
While the administrators and moderators of this forum
|
||||
will attempt to remove or edit any generally objectionable
|
||||
material as quickly as possible, it is impossible to review
|
||||
every message. Therefore you acknowledge that all posts
|
||||
made to these forums express the views and opinions of
|
||||
the author and not the administrators, moderators or webmaster
|
||||
(except for posts by these people) and hence will not
|
||||
be held liable.<br />
|
||||
<br />
|
||||
You agree not to post any abusive, obscene, vulgar, slanderous,
|
||||
hateful, threatening, sexually-orientated or any other
|
||||
material that may violate any applicable laws. Doing so
|
||||
may lead to you being immediately and permanently banned
|
||||
(and your service provider being informed). The IP address
|
||||
of all posts is recorded to aid in enforcing these conditions.
|
||||
You agree that the webmaster, administrator and moderators
|
||||
of this forum have the right to remove, edit, move or
|
||||
close any topic at any time should they see fit. As a
|
||||
user you agree to any information you have entered above
|
||||
being stored in a database. While this information will
|
||||
not be disclosed to any third party without your consent
|
||||
the webmaster, administrator and moderators cannot be
|
||||
held responsible for any hacking attempt that may lead
|
||||
to the data being compromised.<br />
|
||||
<br />
|
||||
This forum system uses cookies to store information on
|
||||
your local computer. These cookies do not contain any
|
||||
of the information you have entered above, they serve
|
||||
only to improve your viewing pleasure. The email address
|
||||
is used only for confirming your registration details
|
||||
and password (and for sending new passwords should you
|
||||
forget your current one).<br />
|
||||
<br />
|
||||
By clicking Register below you agree to be bound by these
|
||||
conditions.<br />
|
||||
<br />
|
||||
<br />
|
||||
<div align="center"><a href="{U_AGREE_OVER13}">I Agree
|
||||
to these terms (and am over 13 years of age)</a><br />
|
||||
<br />
|
||||
<a href="{U_AGREE_UNDER13}">I Agree to these terms (and
|
||||
am <b>under</b> 13 years of age)</a><br />
|
||||
<br />
|
||||
<a href="{U_INDEX}">I do not agree to these terms</a></div>
|
||||
<br />
|
||||
</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
30
phpBB/templates/subSilver/confirm_body.tpl
Normal file
@ -0,0 +1,30 @@
|
||||
|
||||
<div align="center">
|
||||
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table width="100%" border="0" cellspacing="1" cellpadding="3">
|
||||
<tr>
|
||||
<th class="secondary" height="25" valign="middle"><b>{MESSAGE_TITLE}</b></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" align="center"><form action="{S_CONFIRM_ACTION}" method="POST"><span class="gen"><br>
|
||||
{MESSAGE_TEXT}<br />
|
||||
<br />
|
||||
{S_HIDDEN_FIELDS}
|
||||
<input type="submit" name="confirm" value="{L_YES}" class="mainoption" />
|
||||
|
||||
<input type="submit" name="cancel" value="{L_NO}" class="liteoption" /></span></form></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<br />
|
29
phpBB/templates/subSilver/error_body.tpl
Normal file
@ -0,0 +1,29 @@
|
||||
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><span class="error">{ERROR_MESSAGE}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
601
phpBB/templates/subSilver/faq.tpl
Normal file
@ -0,0 +1,601 @@
|
||||
|
||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" valign="bottom" colspan="2"><span class="titlemedium">{TOPIC_TITLE}</span><span class="gensmall"><br>
|
||||
</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table border="0" width="100%" cellspacing="1" cellpadding="3">
|
||||
<tr class="cat">
|
||||
<td class="titlelarge">Frequently Asked Questions</td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td class="general"> <a href="#register" class="general">Do I
|
||||
have to register?</a><br>
|
||||
<a href="#smilies" class="general">Can I use smilies?</a><br>
|
||||
<a href="#html" class="general">Using HTML</a><br>
|
||||
<a href="#bbcode" class="general">Using BB Code</a><br>
|
||||
<a href="#mods" class="general">What are moderators?</a><br>
|
||||
<a href="#profile" class="general">Can I change my profile?</a><br>
|
||||
<a href="#prefs" class="general">Can I customize the bulletin
|
||||
board in any way?</a><br>
|
||||
<a href="#cookies" class="general">Do you use cookies?</a><br>
|
||||
<a href="#edit" class="general">Can I edit my own posts?</a><br>
|
||||
<a href="#attach" class="general">Can I attach files?</a><br>
|
||||
<a href="#search" class="general">Can I search?</a><br>
|
||||
<a href="#signature" class="general">Can I add a signature to
|
||||
the end of my posts?</a><br>
|
||||
<a href="#announce" class="general">What are announcements?</a><br>
|
||||
<a href="#pw" class="general">Is there a username/password retrieval
|
||||
system?</a><br>
|
||||
<a href="#notify" class="general">Can I be notified by email
|
||||
if someone responds to my topic?</a><br>
|
||||
<a href="#searchprivate" class="general">Can I search private
|
||||
forums?</a><br>
|
||||
<a href="#ranks" class="general">What are the ranks in the
|
||||
<?php echo $sitename?>
|
||||
</a><br>
|
||||
<a href="#rednumbers" class="general">Why are icons flaming
|
||||
in the topic view?</a> <br>
|
||||
<a name="register"></a> </td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge">Registering</td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody">Registration is only required on a
|
||||
per forum basis. Depending on the how the administrator has
|
||||
setup his/her forums some may require you to register in order
|
||||
to post, where some may allow you to post anonymously. If anonymous
|
||||
posting is allowed you can do so by simply not entering a username
|
||||
and password when prompted. Registration is free, and you are
|
||||
not required to post your real name. You are required to post
|
||||
your actual email address, however it will only be used to email
|
||||
you a new password if you have forgotten yours. You also have
|
||||
the option to hide you email address from everyone except the
|
||||
administrator, it option is selected by default but you can
|
||||
allow others to see your email address by selecting the 'Allow
|
||||
other users to view my email address' checkbox on the registration
|
||||
form. You can register by clicking <a href="<?php echo $url_phpbb?>/bb_register.<?php echo $phpEx?>?mode=agreement">here</a><br>
|
||||
<a name="smilies"></a> </font> </td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge">Smilies</td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> You've probably seen others use smilies
|
||||
before in email messages or other bulletin board posts. Smilies
|
||||
are keyboard characters used to convey an emotion, such as a
|
||||
smile :) or a frown :(. This bulletin board automatically converts
|
||||
certain smilies to a graphical representation. The following
|
||||
smilies are currently supported:<br>
|
||||
</font><br>
|
||||
<table width="50%" align="CENTER" bgcolor="<?php echo $table_bgcolor?>" cellspaceing=1 border="0" cellpadding="1" cellspacing="1">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellpadding="3" cellspacing="1">
|
||||
<tr class="cat">
|
||||
<td width="100" class="postbody">
|
||||
<?php echo $l_smilesym?>
|
||||
</td>
|
||||
<td width="50%" class="postbody">
|
||||
<?php echo $l_smileemotion?>
|
||||
</td>
|
||||
<td width="55" class="postbody">
|
||||
<?php echo $l_smilepict?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
|
||||
if ($getsmiles = mysql_query("SELECT * FROM smiles")) {
|
||||
while ($smile = mysql_fetch_array($getsmiles)) {
|
||||
?>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td width="100" class="postbody">
|
||||
<?php echo stripslashes($smile[code])?>
|
||||
</td>
|
||||
<td width="50%" class="postbody">
|
||||
<?php echo stripslashes($smile[emotion])?>
|
||||
</td>
|
||||
<td width="55" class="postbody" align="center"><img src="<?php echo "$url_smiles/$smile[smile_url]";?>">
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
} else
|
||||
echo "Could not retrieve from the smile database.";
|
||||
?>
|
||||
</table>
|
||||
</table>
|
||||
<br>
|
||||
<a name="html"></a> </td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Using HTML </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td class="postbody"> You may be able to use HTML in your posts,
|
||||
if your administrators and moderators have this option turned
|
||||
on. Every time you post a new note, you will be told whether
|
||||
BB Code and/or HTML is enabled. If HTML is on, you may use any
|
||||
HTML tags, but please be very careful that you proper HTML syntax.
|
||||
If you do not, your moderator or administrator may have to edit
|
||||
your post.<br>
|
||||
<a name="bbcode"></a> </td>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Using BB Code</td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td class="postbody"> BBCode is a variation on the HTML tags you
|
||||
may already be familiar with. Basically, it allows you to add
|
||||
functionality or style to your message that would normally require
|
||||
HTML. You can use BBCode even if HTML is not enabled for the
|
||||
forum you are using. You may want to use BBCode as opposed to
|
||||
HTML, even if HTML is enabled for your forum, because there
|
||||
is less coding required and it is safer to use (incorrect coding
|
||||
syntax will not lead to as many problems).<br>
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0 width="100%" align="CENTER">
|
||||
<tr>
|
||||
<td bgcolor="<?php echo $color2?>" align="center">
|
||||
<table width="90%" border="0" cellspacing="0" cellpadding="1" bgcolor="<?php echo $table_bgcolor?>">
|
||||
<tr>
|
||||
<td bgcolor="<?php echo $table_bgcolor?>">
|
||||
<table border=0 cellpadding=4 cellspacing=1 width=100%>
|
||||
<tr class="cat">
|
||||
<td> <font class="titlemedium">URL Hyperlinking</font></td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td class="postbody"> If BBCode is enabled in
|
||||
a forum, you no longer need to use the [URL]
|
||||
code to create a hyperlink. Simply type the
|
||||
complete URL in either of the following manners
|
||||
and the hyperlink will be created automatically:
|
||||
<ul>
|
||||
<li> <font color="#0066FF">http://www.yourURL.com</font>
|
||||
<li> <font color="#0066FF">www.yourURL.com</font>
|
||||
Notice that you can either use the complete
|
||||
http:// address or shorten it to the www
|
||||
domain. If the site does not begin with
|
||||
"www", you must use the complete "http://"
|
||||
address. Also, you may use https and ftp
|
||||
URL prefixes in auto-link mode (when BBCode
|
||||
is ON).
|
||||
<p> The old [URL] code will still work,
|
||||
as detailed below. Just encase the link
|
||||
as shown in the following example (BBCode
|
||||
is in <font color="#FF0000">red</font>).
|
||||
<p>
|
||||
<center>
|
||||
<font color="#FF0000">[url]</font>www.totalgeek.org<font color="#FF0000">[/url]</font>
|
||||
</center>
|
||||
<p>
|
||||
<center>
|
||||
</center>
|
||||
You can also have true hyperlinks using
|
||||
the [url] code. Just use the following
|
||||
format: <br>
|
||||
<center>
|
||||
<font color="#FF0000">[url=http://www.totalgeek.org]</font>totalgeek.org<font color="#FF0000">[/url]</font>
|
||||
</center>
|
||||
<p> In the examples above, the BBCode
|
||||
automatically generates a hyperlink
|
||||
to the URL that is encased. It will
|
||||
also ensure that the link is opened
|
||||
in a new window when the user clicks
|
||||
on it. Note that the "http://" part
|
||||
of the URL is completely optional. In
|
||||
the second example above, the URL will
|
||||
hypelink the text to whatever URL you
|
||||
provide after the equal sign. Also note
|
||||
that you should NOT use quotation marks
|
||||
inside the URL tag.
|
||||
</ul>
|
||||
</td>
|
||||
<tr class="cat">
|
||||
<td> <font class="titlemedium"> Email Links</font></td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> To add a hyperlinked
|
||||
email address within your message, just encase
|
||||
the email address as shown in the following
|
||||
example (BBCode is in <font color="#FF0000">red</font>).
|
||||
</font>
|
||||
<p>
|
||||
<center>
|
||||
<font class="postbody"><font color="#FF0000">[email]</font>james@totalgeek.org<font color="#FF0000">[/email]</font></font>
|
||||
</center>
|
||||
<p><font class="postbody"> In the example
|
||||
above, the BBCode automatically generates
|
||||
a hyperlink to the email address that is
|
||||
encased. </font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td> <font class="titlemedium"> Bold and Italics</font></td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> You can make italicized
|
||||
text or make text bold by encasing the applicable
|
||||
sections of your text with either the [b]
|
||||
[/b] or [i] [/i] tags. </font>
|
||||
<p>
|
||||
<center>
|
||||
<font class="postbody"> Hello, <font color="#FF0000">[b]</font><b>James</b><font color="#FF0000">[/b]</font><br>
|
||||
Hello, <font color="#FF0000">[i]</font><i>Mary</i><font color="#FF0000">[/i]</font></font>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td> <font class="titlemedium"> Bullets/Lists</font></td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td class="postbody"> You can make bulleted
|
||||
lists or ordered lists (by number or letter).
|
||||
<p> Unordered, bulleted list:
|
||||
<p> <font color="#FF0000">[list]</font> <br>
|
||||
<font color="#FF0000">[*]</font> This is
|
||||
the first bulleted item.<br>
|
||||
<font color="#FF0000">[*]</font> This is
|
||||
the second bulleted item.<br>
|
||||
<font color="#FF0000">[/list]</font>
|
||||
<p> This produces:
|
||||
<ul>
|
||||
<li> This is the first bulleted item.
|
||||
<li> This is the second bulleted item.
|
||||
</ul>
|
||||
Note that you must include a closing [/list]
|
||||
when you end each list.
|
||||
<p> Making ordered lists is just as easy.
|
||||
Just add either [LIST=A] or [LIST=1]. Typing
|
||||
[List=A] will produce a list from A to Z.
|
||||
Using [List=1] will produce numbered lists.
|
||||
<p> Here's an example:
|
||||
<p> <font color="#FF0000">[list=A]</font>
|
||||
<br>
|
||||
<font color="#FF0000">[*]</font> This is
|
||||
the first bulleted item.<br>
|
||||
<font color="#FF0000">[*]</font> This is
|
||||
the second bulleted item.<br>
|
||||
<font color="#FF0000">[/list]</font>
|
||||
<p> This produces:
|
||||
<ol type=A>
|
||||
<li> This is the first bulleted item.
|
||||
<li> This is the second bulleted item.
|
||||
</ol>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td> <font class="titlemedium"> Adding Images</font></td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> To add a graphic
|
||||
within your message, just encase the URL of
|
||||
the graphic image as shown in the following
|
||||
example (BBCode is in <font color="#FF0000">red</font>).
|
||||
</font>
|
||||
<p>
|
||||
<center>
|
||||
<font class="postbody"><font color="#FF0000">[img]</font>http://www.totalgeek.org/images/tline.gif<font color="#FF0000">[/img]</font></font>
|
||||
</center>
|
||||
<p><font class="postbody"> In the example
|
||||
above, the BBCode automatically makes the
|
||||
graphic visible in your message. Note: the
|
||||
"http://" part of the URL is REQUIRED for
|
||||
the <font color="#FF0000">[img]</font> code.
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td> <font class="titlemedium"> Quoting Other
|
||||
Messages</font></td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> To reference something
|
||||
specific that someone has posted, just cut
|
||||
and paste the applicable verbiage and enclose
|
||||
it as shown below (BBCode is in <font color="#FF0000">red</font>).
|
||||
</font>
|
||||
<p>
|
||||
<center>
|
||||
<font class="postbody"><font color="#FF0000">[QUOTE]</font>Ask
|
||||
not what your country can do for you....<br>
|
||||
ask what you can do for your country.<font color="#FF0000">[/QUOTE]</font></font>
|
||||
</center>
|
||||
<p><font class="postbody"> In the example
|
||||
above, the BBCode automatically blockquotes
|
||||
the text you reference. </font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td> <font class="titlemedium"> Code Tag</font></td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> Similar to the
|
||||
Quote tage, the Code tag adds some <PRE>
|
||||
tags to preserve formatting. This useful for
|
||||
displaying programming code, for instance.
|
||||
</font>
|
||||
<p> <font class="postbody"><font color="#FF0000">[CODE]</font>#!/usr/bin/perl
|
||||
</font>
|
||||
<p><font class="postbody"> print "Content-type:
|
||||
text/html\n\n"; <br>
|
||||
print "Hello World!"; <font color="#FF0000">[/CODE]</font></font>
|
||||
<p><font class="postbody"> In the example
|
||||
above, the BBCode automatically blockquotes
|
||||
the text you reference and preserves the
|
||||
formatting of the coded text. </font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<br>
|
||||
You must not use both HTML and BBCode to do the same function.
|
||||
Also note that the BBCode is not case-sensitive (thus, you could
|
||||
use <font color="#FF0000">[URL]</font> or <font color="#FF0000">[url]</font>).
|
||||
<p> <font color="#0066FF">Incorrect BBCode Usage:</font>
|
||||
<p> <font color="#FF0000">[url]</font> www.totalgeek.org <font color="#FF0000">[/url]</font>
|
||||
- don't put spaces between the bracketed code and the text
|
||||
you are applying the code to.
|
||||
<p> <font color="#FF0000">[email]</font>james@totalgeek.org<font color="#FF0000">[email]</font>
|
||||
- the end brackets must include a forward slash (<font color="#FF0000">[/email]</font>)<br>
|
||||
<a name="mods"></a>
|
||||
</td>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Moderators</td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td class="postbody">
|
||||
<p> Moderators control individual forums. They can edit, delete,
|
||||
or prune any posts in their forums. If you have a question
|
||||
about a particular forum, you should direct it to your forum
|
||||
moderator.</p>
|
||||
<p>Admins and forum moderators reserve the right to close or
|
||||
delete any post that does not provide a clear and purposefull
|
||||
topic. There are many members who still use 28.8 and 56k modems
|
||||
that do not have the time to wade through useless and senseless
|
||||
topics. </p>
|
||||
<p>Anyone who posts just to increase their subBlue design Forums
|
||||
stats or post topics out of boredom risk having there topics
|
||||
closed, removed and/or membership revoked. </p>
|
||||
<p>Try to make the topic wording mirror what is inside the thread.
|
||||
Topics like "Check this out!" and "~~\\You have to see this!//~~"
|
||||
only attract members to a topic they may not want to read.<br>
|
||||
<a name="profile"></a> </p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Changing Your Profile</td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> You may easily change any info stored
|
||||
in your registration profile, using the "profile"
|
||||
link located near the top of each page. Simply identify yourself
|
||||
by typing your username and password, or by logging in, and
|
||||
all of your profile information will appear on screen.<br>
|
||||
<a name="prefs"></a> </font></td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Customizing Using Preferences </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> As a registered bulletin board user,
|
||||
you may store your username in memory for up to one year at
|
||||
a time. By doing this we create a way to keep track of who you
|
||||
are when you visit the forum, therefor you can customize the
|
||||
look of the forum by selecting from the themes that the administration
|
||||
has provided. Also, if the administrator allows it you may have
|
||||
the option of creating new themes for the fourms. In creating
|
||||
a new theme you will be able to set the colors, fonts and font
|
||||
sizes on the board, however at this time only the administrator
|
||||
may change the images for each theme. When a user creates a
|
||||
theme the images from the board's default theme will be selected.
|
||||
<br>
|
||||
*NOTE: In order to use themes you MUST have cookies enabled.<br>
|
||||
<a name="cookies"></a> </font></td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Cookies</td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> This bulletin board uses cookies
|
||||
to store the following information: the last time you visited
|
||||
the forums, your username, and a unique session ID number when
|
||||
you login. These cookies are stored on your browser. If your
|
||||
browser does not support cookies, or you have not enabled cookies
|
||||
on your browser, none of these time-saving features will work
|
||||
properly.<br>
|
||||
<a name="edit"></a> </font> </td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Editing Your Posts </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> You may edit your own posts at any
|
||||
time. Just go to the thread where the post to be edited is located
|
||||
and you will see an edit icon on the line under your message.
|
||||
Click on this icon and edit the post. No one else can edit your
|
||||
post, except for the forum moderator or the bulletin board administrator.
|
||||
Also, for up to 30 mins after you have posted you message the
|
||||
edit post screen will give you the option of deleteing that
|
||||
post. After 30 mins however only the moderator and/or administrator
|
||||
can remove the post.<br>
|
||||
<a name="signature"></a> </font></td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge">Adding Signatures </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td class="postbody"> You may use a signature on your posts. If
|
||||
you click on the profile link at the top of most pages, you
|
||||
will be able to edit your profile, including your standard signature.
|
||||
Once you have a signature stored, you can choose to include
|
||||
it any post you make by checking the "include signature"
|
||||
box when you create your post. This bulletin board's administrator
|
||||
may elect to turn the signature feature off at any time, however.
|
||||
If that is the case, the "include signature" option
|
||||
will not appear when you post a note, even if you have stored
|
||||
a signature. You may also change your signature at any time
|
||||
by changing your profile.
|
||||
<p>Note: You may use HTML or <a href="#bbcode">BB Code</a> if
|
||||
the admin has enabled these options.<br>
|
||||
<a name="attach"></a> </p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Attaching Files </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> For security reasons, you may not
|
||||
attach files to any posts. You may cut and paste text into your
|
||||
post, however, or use HTML and/or BB Code (if enabled) to provide
|
||||
hyperlinks to outside documents. File attachements will be included
|
||||
in a future version of phpBB.<br>
|
||||
<a name="search"></a> </font></td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Searching For Specific Posts </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> You may search for specific posts
|
||||
based on a word or words found in the posts, a user name, a
|
||||
date, and/or a particular forum(s). Just click on the "search"
|
||||
link at the top of most pages.<br>
|
||||
<a name="announce"></a> </font></td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Announcements </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td class="postbody"> Announcements have not been implemented,
|
||||
but are planned in a future release. However, the administrator
|
||||
can create a forum where only other administrators and moderators
|
||||
can post. This type of forum can easly be used as an announcement
|
||||
forum.<br>
|
||||
<a name="pw"></a> </td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Lost User Name and/or Password </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> In the even that you lose your password
|
||||
you can click on the "Forgotten your password?" link
|
||||
provided in the message posting screens next to the password
|
||||
field. This link will take you to a page where you can fill
|
||||
in your username and email address. The system will then email
|
||||
a new, randomly generated, password to the email address listed
|
||||
in your profile, assuming you supplied the correct email address.<br>
|
||||
<a name="notify"></a> </font></td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> Email Notification </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> If you create a new topic, you have
|
||||
the option of receiving an email notification every time someone
|
||||
posts a reply to your topic. Just check the email notification
|
||||
box on the "New Topic" forum when you create your
|
||||
new topic if you want to use this feature.<br>
|
||||
<a name="searchprivate"></a> </font> </td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> <b>Can I search private forums?</b> </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> Yes, but you cannot read any of the
|
||||
posts unless you have the password to the private forum.<br>
|
||||
<a name="ranks"></a> </font></td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> What are the ranks for the subBlue design
|
||||
Forums? </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> The subBlue design Forums have established
|
||||
methods to classify their users by activity through the number
|
||||
of posts.<br>
|
||||
The current ranks are as follows:<br>
|
||||
<br>
|
||||
<?php
|
||||
$sql = "SELECT * FROM ranks WHERE rank_special = 0";
|
||||
if(!$r = mysql_query($sql, $db)) {
|
||||
echo "Error connecting to the database";
|
||||
include('page_tail.'.$phpEx);
|
||||
exit();
|
||||
}
|
||||
?>
|
||||
<table border="0" width="<?php echo $TableWidth?>" cellpadding="1" cellspacing="0" align="CENTER" valign="TOP">
|
||||
<tr>
|
||||
<td bgcolor="<?php echo $table_bgcolor?>">
|
||||
<table border="0" cellpadding="1" cellspacing="1" width="100%">
|
||||
<tr class="cat" align="CENTER">
|
||||
<td><font class="general"> Rank Title </font></td>
|
||||
<td><font class="general"> Minimum Posts </font></td>
|
||||
<td><font class="general"> Maximum Posts </font></td>
|
||||
<td><font class="general"> Rank Image</font></td>
|
||||
</tr>
|
||||
<?php
|
||||
if($m = mysql_fetch_array($r)) {
|
||||
do {
|
||||
echo "<TR BGCOLOR=\"$color2\" ALIGN=\"CENTER\">";
|
||||
echo "<TD><font class=\"postbody\">$m[rank_title]</font></TD>";
|
||||
echo "<TD><font class=\"postbody\">$m[rank_min]</font></TD>";
|
||||
echo "<TD><font class=\"postbody\">$m[rank_max]</font></TD>";
|
||||
if($m[rank_image] != '')
|
||||
echo "<TD><img src=\"$url_images/$m[rank_image]\"></TD>";
|
||||
else
|
||||
echo "<TD> </TD>";
|
||||
echo "</TR>";
|
||||
} while($m = mysql_fetch_array($r));
|
||||
}
|
||||
else {
|
||||
echo "<TR BGCOLOR=\"$color2\" ALIGN=\"CENTER\">";
|
||||
echo "<TD COLSPAN=\"4\">No Ranks in the database</TD>";
|
||||
echo "</TR>";
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
</table>
|
||||
</font> <br>
|
||||
<font class="postbody"> The adminstrator also has the option
|
||||
of assigning special ranks to any user they choose. The above
|
||||
table does not list these special ranks. <br>
|
||||
</font> </td>
|
||||
</tr>
|
||||
<tr class="cat">
|
||||
<td class="titlelarge"> <a name="rednumbers"></a>Why are some
|
||||
post icons <font color="#FF0033"> <b>flaming</b> </font> in
|
||||
the forum view? </td>
|
||||
</tr>
|
||||
<tr bgcolor="<?php echo $color2?>">
|
||||
<td> <font class="postbody"> Flaming icons signify that there
|
||||
are
|
||||
<?php echo $hot_threshold?>
|
||||
or more posts in that thread. It is a warning to slower connections
|
||||
that the thread may take some time to load.<br>
|
||||
</font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
17
phpBB/templates/subSilver/formIE.css
Normal file
@ -0,0 +1,17 @@
|
||||
/* Fancy form styles for IE */
|
||||
|
||||
input, textarea, select {
|
||||
border-top-width : 1px;
|
||||
border-right-width : 1px;
|
||||
border-bottom-width : 1px;
|
||||
border-left-width : 1px;
|
||||
}
|
||||
|
||||
input { text-indent : 2px; }
|
||||
|
||||
input.button {
|
||||
border-top-width : 1px;
|
||||
border-right-width : 1px;
|
||||
border-bottom-width : 1px;
|
||||
border-left-width : 1px;
|
||||
}
|
133
phpBB/templates/subSilver/groupcp_info_body.tpl
Normal file
@ -0,0 +1,133 @@
|
||||
|
||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr><form method="POST" action="{S_GROUP_INFO_ACTION}">
|
||||
<td class="innerline">
|
||||
<table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<th colspan="7" height="25" class="secondary">{L_GROUP_INFORMATION}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" width="20%"><span class="gen">{L_GROUP_NAME}:</span></td>
|
||||
<td class="row2"><span class="gen"><b>{GROUP_NAME}</b></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" width="20%"><span class="gen">{L_GROUP_DESC}:</span></td>
|
||||
<td class="row2"><span class="gen">{GROUP_DESC}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" width="20%"><span class="gen">{L_GROUP_MEMBERSHIP}:</span></td>
|
||||
<td class="row2"><span class="gen">{GROUP_DETAILS}{S_HIDDEN_FIELDS}</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</form></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
|
||||
<form action="{S_PENDING_ACTION}" method="POST">
|
||||
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<th>Private Message</th>
|
||||
<th>{L_USERNAME}</th>
|
||||
<th>{L_POSTS}</th>
|
||||
<th>{L_FROM}</th>
|
||||
<th>{L_EMAIL}</th>
|
||||
<th colspan="2">{L_WEBSITE}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="7" height="28"><span class="cattitle">Group
|
||||
Moderator</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" align="center"> {MOD_PM_IMG} </td>
|
||||
<td class="row1" align="center"><span class="gen"><a href="{U_MOD_VIEWPROFILE}" class="gen">{MOD_USERNAME}</a></span></td>
|
||||
<td class="row1" align="center" valign="middle"><span class="gen">{MOD_POSTS}</span></td>
|
||||
<td class="row1" align="center" valign="middle"><span class="gen">{MOD_FROM}</span></td>
|
||||
<td class="row1" align="center" valign="middle"><span class="gen">{MOD_EMAIL_IMG}</span></td>
|
||||
<td class="row1" align="center" colspan="2">{MOD_WWW_IMG}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="8" height="28"><span class="cattitle">Group
|
||||
Members</span></td>
|
||||
</tr>
|
||||
<!-- BEGIN memberrow -->
|
||||
<tr>
|
||||
<td class="{memberrow.ROW_CLASS}" align="center"> {memberrow.PM_IMG}
|
||||
</td>
|
||||
<td class="{memberrow.ROW_CLASS}" align="center"><span class="gen"><a href="{memberrow.U_VIEWPROFILE}" class="gen">{memberrow.USERNAME}</a></span></td>
|
||||
<td class="{memberrow.ROW_CLASS}" align="center"><span class="gen">{memberrow.POSTS}</span></td>
|
||||
<td class="{memberrow.ROW_CLASS}" align="center"><span class="gen">
|
||||
{memberrow.FROM} </span></td>
|
||||
<td class="{memberrow.ROW_CLASS}" align="center" valign="middle"><span class="gen">{memberrow.EMAIL_IMG}</span></td>
|
||||
<td class="{memberrow.ROW_CLASS}" align="center" colspan="2">
|
||||
{memberrow.WWW_IMG}</td>
|
||||
</tr>
|
||||
<!-- END memberrow -->
|
||||
<!-- BEGIN pendingmembers -->
|
||||
<tr>
|
||||
<td class="cat" colspan="6" height="28"><span class="cattitle">Pending
|
||||
Members</span></td>
|
||||
<td class="cat" align="center"><span class="gen"><b>Action</b></span></td>
|
||||
</tr>
|
||||
<!-- END pendingmembers -->
|
||||
<!-- BEGIN pendingmembersrow -->
|
||||
<tr>
|
||||
<td class="{pendingmembersrow.ROW_CLASS}" align="center"> {pendingmembersrow.PM_IMG}
|
||||
</td>
|
||||
<td class="{pendingmembersrow.ROW_CLASS}" align="center"><span class="gen"><a href="{pendingmembersrow.U_VIEWPROFILE}" class="gen">{pendingmembersrow.USERNAME}</a></span></td>
|
||||
<td class="{pendingmembersrow.ROW_CLASS}" align="center"><span class="gen">{pendingmembersrow.POSTS}</span></td>
|
||||
<td class="{pendingmembersrow.ROW_CLASS}" align="center"><span class="gen">{pendingmembersrow.FROM}</span></td>
|
||||
<td class="{pendingmembersrow.ROW_CLASS}" align="center"><span class="gen">{pendingmembersrow.EMAIL_IMG}</span></td>
|
||||
<td class="{pendingmembersrow.ROW_CLASS}" align="center"><span class="gen">{pendingmembersrow.WWW_IMG}</span></td>
|
||||
<td class="{pendingmembersrow.ROW_CLASS}" align="center"><span class="gensmall">{pendingmembersrow.SELECT} {L_SELECT}</span></td>
|
||||
</tr>
|
||||
<!-- END pendingmembersrow -->
|
||||
<!-- BEGIN pendingmembers -->
|
||||
<tr>
|
||||
<td class="cat" colspan="8" align="right"><span class="cattitle">
|
||||
<input type="submit" name="approve" value="{L_APPROVESELECTED}" class="mainoption" />
|
||||
|
||||
<input type="submit" name="deny" value="{L_DENYSELECTED}" class="liteoption" />
|
||||
</span></td>
|
||||
</tr>
|
||||
<!-- END pendingmembers -->
|
||||
<!-- BEGIN nomembers -->
|
||||
<tr>
|
||||
<td class="row1" colspan="7" align="center">{L_NO_MEMBERS}</td>
|
||||
</tr>
|
||||
<!-- END nomembers -->
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" cellspacing="2" border="0" align="center" cellpadding="2">
|
||||
<tr>
|
||||
<td align="right" valign="top"><span class="gensmall">{S_TIMEZONE}</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<table width="100%" cellspacing="2" border="0" align="center">
|
||||
<tr>
|
||||
<td valign="top" align="right">{JUMPBOX}</td>
|
||||
</tr>
|
||||
</table>
|
80
phpBB/templates/subSilver/groupcp_list_body.tpl
Normal file
@ -0,0 +1,80 @@
|
||||
|
||||
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<td class="cat" colspan="7"><span class="cattitle">Group Moderator</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{L_PM}</th>
|
||||
<th>{L_USERNAME}</th>
|
||||
<th>{L_EMAIL}</th>
|
||||
<th>{L_FROM}</th>
|
||||
<th>{L_JOINED}</th>
|
||||
<th>{L_POSTS}</th>
|
||||
<th>{L_WEBSITE}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" width="8%" align="center"> {MOD_PM_IMG} </td>
|
||||
<td class="row1" align="center"><span class="gen"><a href="{U_MOD_VIEWPROFILE}">{MOD_USERNAME}</a></span></td>
|
||||
<td class="row1" width="8%" align="center" valign="middle"> {MOD_EMAIL_IMG} </td>
|
||||
<td class="row1" align="center" valign="middle"><span class="gen">{MOD_FROM}</span></td>
|
||||
<td class="row1" align="center" valign="middle"><span class="gensmall">{MOD_JOINED}</span></td>
|
||||
<td class="row1" align="center" valign="middle"><span class="gen">{MOD_POSTS}</span></td>
|
||||
<td class="row1" width="8%" align="center"> {MOD_WWW_IMG} </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="7"><span class="cattitle">Group Members</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{L_PM}</th>
|
||||
<th>{L_USERNAME}</th>
|
||||
<th>{L_EMAIL}</th>
|
||||
<th>{L_FROM}</th>
|
||||
<th>{L_JOINED}</th>
|
||||
<th>{L_POSTS}</th>
|
||||
<th>{L_WEBSITE}</th>
|
||||
</tr>
|
||||
<!-- BEGIN memberrow -->
|
||||
<tr>
|
||||
<td width="8%" bgcolor="{memberrow.ROW_COLOR}" align="center"> {memberrow.PM_IMG} </td>
|
||||
<td bgcolor="{memberrow.ROW_COLOR}" align="center"><span class="gen"><a href="{memberrow.U_VIEWPROFILE}">{memberrow.USERNAME}</a></span></td>
|
||||
<td width="8%" bgcolor="{memberrow.ROW_COLOR}" align="center" valign="middle"> {memberrow.EMAIL_IMG} </td>
|
||||
<td bgcolor="{memberrow.ROW_COLOR}" align="center" valign="middle"><span class="gen">{memberrow.FROM}</span></td>
|
||||
<td bgcolor="{memberrow.ROW_COLOR}" align="center" valign="middle"><span class="gensmall">{memberrow.JOINED}</span></td>
|
||||
<td bgcolor="{memberrow.ROW_COLOR}" align="center" valign="middle"><span class="gen">{memberrow.POSTS}</span></td>
|
||||
<td width="8%" bgcolor="{memberrow.ROW_COLOR}" align="center"> {memberrow.WWW_IMG} </td>
|
||||
</tr>
|
||||
<!-- END memberrow -->
|
||||
<tr>
|
||||
<td class="cat" colspan="7">
|
||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td><span class="nav"> {L_PAGE} <b>{ON_PAGE}</b> {L_OF}
|
||||
<b>{TOTAL_PAGES}</b></span></td>
|
||||
<td align="right"><span class="nav">{PAGINATION} </span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" cellspacing="2" border="0" align="center" cellpadding="2">
|
||||
<tr>
|
||||
<td align="right" valign="top"><span class="gensmall">{S_TIMEZONE}</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" cellspacing="2" border="0" align="center">
|
||||
<tr>
|
||||
<td valign="top" align="right">{JUMPBOX}</td>
|
||||
</tr>
|
||||
</table>
|
74
phpBB/templates/subSilver/groupcp_user_body.tpl
Normal file
@ -0,0 +1,74 @@
|
||||
|
||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left" colspan="2" class="forumline">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td class="innerline">
|
||||
<table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||
<tr>
|
||||
<th colspan="2" align="center" height="25" class="secondary">{L_GROUP_MEMBERSHIP_DETAILS}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_YOU_BELONG_GROUPS}</span></td>
|
||||
<td class="row2" align="right">
|
||||
<table width="90%" cellspacing="0" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<form method="post" action="{S_USERGROUP_ACTION}">
|
||||
<td width="40%"><span class="gensmall">{GROUP_MEMBER_SELECT}</span></td>
|
||||
<td align="center" width="30%">
|
||||
<input type="submit" name="viewinfo" value="{L_VIEW_INFORMATION}" class="liteoption" /></td>
|
||||
<td align="center" width="30%">
|
||||
<input type="submit" name="unsubjoin" value="{L_UNSUBSCRIBE}" class="liteoption" /></td>
|
||||
</form>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_PENDING_GROUPS}</span></td>
|
||||
<td class="row2" align="right">
|
||||
<table width="90%" cellspacing="0" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<form method="post" action="{S_USERGROUP_ACTION}">
|
||||
<td width="40%"><span class="gensmall">{GROUP_PENDING_SELECT}</span></td>
|
||||
<td align="center" width="30%">
|
||||
<input type="submit" name="viewinfo" value="{L_VIEW_INFORMATION}" class="liteoption" /></td>
|
||||
<td align="center" width="30%">
|
||||
<input type="submit" name="unsubpending" value="{L_UNSUBSCRIBE}" class="liteoption" /></td>
|
||||
</form>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center" height="28"><span class="cattitle"><b>{L_JOIN_A_GROUP}</b></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen">{L_SELECT_A_GROUP}</span></td>
|
||||
<td class="row2" align="right">
|
||||
<table width="90%" cellspacing="0" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<form method="post" action="{S_USERGROUP_ACTION}">
|
||||
<td width="40%"><span class="gensmall">{GROUP_LIST_SELECT}</span></td>
|
||||
<td align="center" width="30%">
|
||||
<input type="submit" name="viewinfo" value="{L_VIEW_INFORMATION}" class="liteoption" /></td>
|
||||
<td align="center" width="30%">
|
||||
<input type="submit" name="subnew" value="{L_SUBSCRIBE}" class="liteoption" /></td>
|
||||
</form>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
BIN
phpBB/templates/subSilver/images/cellpic.gif
Normal file
After Width: | Height: | Size: 722 B |
BIN
phpBB/templates/subSilver/images/cellpic1.gif
Normal file
After Width: | Height: | Size: 246 B |
BIN
phpBB/templates/subSilver/images/cellpic2.jpg
Normal file
After Width: | Height: | Size: 480 B |
BIN
phpBB/templates/subSilver/images/cellpic3.gif
Normal file
After Width: | Height: | Size: 257 B |
BIN
phpBB/templates/subSilver/images/created_by.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
phpBB/templates/subSilver/images/folder.gif
Normal file
After Width: | Height: | Size: 344 B |
BIN
phpBB/templates/subSilver/images/folder_announce.gif
Normal file
After Width: | Height: | Size: 307 B |
BIN
phpBB/templates/subSilver/images/folder_announce_new.gif
Normal file
After Width: | Height: | Size: 289 B |
BIN
phpBB/templates/subSilver/images/folder_big.gif
Normal file
After Width: | Height: | Size: 677 B |
BIN
phpBB/templates/subSilver/images/folder_hot.gif
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
phpBB/templates/subSilver/images/folder_lock.gif
Normal file
After Width: | Height: | Size: 333 B |
BIN
phpBB/templates/subSilver/images/folder_locked_big.gif
Normal file
After Width: | Height: | Size: 673 B |
BIN
phpBB/templates/subSilver/images/folder_new.gif
Normal file
After Width: | Height: | Size: 336 B |
BIN
phpBB/templates/subSilver/images/folder_new_big.gif
Normal file
After Width: | Height: | Size: 663 B |
BIN
phpBB/templates/subSilver/images/folder_new_hot.gif
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
phpBB/templates/subSilver/images/folder_sticky.gif
Normal file
After Width: | Height: | Size: 344 B |
BIN
phpBB/templates/subSilver/images/folder_sticky_new.gif
Normal file
After Width: | Height: | Size: 325 B |
BIN
phpBB/templates/subSilver/images/icon_aim.gif
Normal file
After Width: | Height: | Size: 753 B |
BIN
phpBB/templates/subSilver/images/icon_edit.gif
Normal file
After Width: | Height: | Size: 798 B |
BIN
phpBB/templates/subSilver/images/icon_email.gif
Normal file
After Width: | Height: | Size: 820 B |
BIN
phpBB/templates/subSilver/images/icon_icq_add.gif
Normal file
After Width: | Height: | Size: 640 B |
BIN
phpBB/templates/subSilver/images/icon_ip.gif
Normal file
After Width: | Height: | Size: 275 B |
BIN
phpBB/templates/subSilver/images/icon_latest_reply.gif
Normal file
After Width: | Height: | Size: 135 B |
BIN
phpBB/templates/subSilver/images/icon_mini_faq.gif
Normal file
After Width: | Height: | Size: 219 B |
BIN
phpBB/templates/subSilver/images/icon_mini_groups.gif
Normal file
After Width: | Height: | Size: 222 B |
BIN
phpBB/templates/subSilver/images/icon_mini_login.gif
Normal file
After Width: | Height: | Size: 233 B |
BIN
phpBB/templates/subSilver/images/icon_mini_members.gif
Normal file
After Width: | Height: | Size: 223 B |
BIN
phpBB/templates/subSilver/images/icon_mini_message.gif
Normal file
After Width: | Height: | Size: 232 B |
BIN
phpBB/templates/subSilver/images/icon_mini_profile.gif
Normal file
After Width: | Height: | Size: 236 B |
BIN
phpBB/templates/subSilver/images/icon_mini_register.gif
Normal file
After Width: | Height: | Size: 224 B |
BIN
phpBB/templates/subSilver/images/icon_mini_search.gif
Normal file
After Width: | Height: | Size: 237 B |
BIN
phpBB/templates/subSilver/images/icon_minipost.gif
Normal file
After Width: | Height: | Size: 122 B |
BIN
phpBB/templates/subSilver/images/icon_msnm.gif
Normal file
After Width: | Height: | Size: 783 B |
BIN
phpBB/templates/subSilver/images/icon_pm.gif
Normal file
After Width: | Height: | Size: 833 B |
BIN
phpBB/templates/subSilver/images/icon_profile.gif
Normal file
After Width: | Height: | Size: 801 B |
BIN
phpBB/templates/subSilver/images/icon_quote.gif
Normal file
After Width: | Height: | Size: 794 B |
BIN
phpBB/templates/subSilver/images/icon_search.gif
Normal file
After Width: | Height: | Size: 758 B |
BIN
phpBB/templates/subSilver/images/icon_www.gif
Normal file
After Width: | Height: | Size: 733 B |
BIN
phpBB/templates/subSilver/images/icon_yim.gif
Normal file
After Width: | Height: | Size: 799 B |
10
phpBB/templates/subSilver/images/index.htm
Normal file
@ -0,0 +1,10 @@
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" text="#000000">
|
||||
|
||||
</body>
|
||||
</html>
|
BIN
phpBB/templates/subSilver/images/logo_phpBB.gif
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
phpBB/templates/subSilver/images/logo_phpBB_med.gif
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
phpBB/templates/subSilver/images/mailbox.gif
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
phpBB/templates/subSilver/images/msg_inbox.gif
Normal file
After Width: | Height: | Size: 684 B |
BIN
phpBB/templates/subSilver/images/msg_newpost.gif
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
phpBB/templates/subSilver/images/msg_outbox.gif
Normal file
After Width: | Height: | Size: 715 B |
BIN
phpBB/templates/subSilver/images/msg_savebox.gif
Normal file
After Width: | Height: | Size: 623 B |
BIN
phpBB/templates/subSilver/images/msg_sentbox.gif
Normal file
After Width: | Height: | Size: 609 B |
BIN
phpBB/templates/subSilver/images/poll.gif
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
phpBB/templates/subSilver/images/post.gif
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
phpBB/templates/subSilver/images/reply-locked.gif
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
phpBB/templates/subSilver/images/reply.gif
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
phpBB/templates/subSilver/images/spacer.gif
Normal file
After Width: | Height: | Size: 43 B |
BIN
phpBB/templates/subSilver/images/subscribe.gif
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
phpBB/templates/subSilver/images/topic_delete.gif
Normal file
After Width: | Height: | Size: 311 B |