Tooltip part 2 for admin panel settings

+The font is slightly increased.
+Partially added to the file Admin/Templates/config.tpl
+Fully added to the file Admin/ Templates/editLogSet.tpl
+Fully added to the file Admin/ Templates/editNewsboxSet.tpl
+Fully added to the file Admin/ Templates/editPlusSet.tpl
Almost completely translated texts in en.php
This commit is contained in:
Vladyslav
2018-04-21 17:34:46 +03:00
parent 65f7ad1721
commit 912564f5eb
6 changed files with 139 additions and 74 deletions
+6 -6
View File
@@ -13,19 +13,19 @@ if (!isset($_SESSION)) {
}
if($_SESSION['access'] < 9) die(ACCESS_DENIED_ADMIN);
?>
<h2><center>Server Configuration</center></h2>
<h2><center><?php echo SERV_CONFIG ?></center></h2>
<form action="../GameEngine/Admin/Mods/editNewsboxSet.php" method="POST">
<input type="hidden" name="id" id="id" value="<?php echo $_SESSION['id']; ?>">
<br />
<table id="profile" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th colspan="2">Edit Newsbox Settings</th>
<th colspan="2"><?php echo EDIT_NEWSBOX_SETT ?></th>
</tr>
</thead>
<tbody>
<tr>
<td width="50%">Newsbox 1</td>
<td width="50%"><?php echo EDIT_NEWSBOX1 ?> <em class="tooltip">?<span class="classic"><?php echo EDIT_NEWSBOX1_TOOLTIP ?></span></em></td>
<td width="50%">
<select name="box1">
<option value="true" <?php if (NEWSBOX1==true) echo "selected";?>>Enable</option>
@@ -34,7 +34,7 @@ if($_SESSION['access'] < 9) die(ACCESS_DENIED_ADMIN);
</td>
</tr>
<tr>
<td>Newsbox 2</td>
<td><?php echo EDIT_NEWSBOX2 ?> <em class="tooltip">?<span class="classic"><?php echo EDIT_NEWSBOX2_TOOLTIP ?></span></em></td>
<td>
<select name="box2">
<option value="true" <?php if (NEWSBOX2==true) echo "selected";?>>Enable</option>
@@ -43,7 +43,7 @@ if($_SESSION['access'] < 9) die(ACCESS_DENIED_ADMIN);
</td>
</tr>
<tr>
<td>Newsbox 3</td>
<td><?php echo EDIT_NEWSBOX3 ?> <em class="tooltip">?<span class="classic"><?php echo EDIT_NEWSBOX3_TOOLTIP ?></span></em></td>
<td>
<select name="box3">
<option value="true" <?php if (NEWSBOX3==true) echo "selected";?>>Enable</option>
@@ -57,7 +57,7 @@ if($_SESSION['access'] < 9) die(ACCESS_DENIED_ADMIN);
</table>
<br />
<table width="100%">
<tr><td align="left"><a href="../Admin/admin.php?p=config"><< back</a></td>
<tr><td align="left"><a href="../Admin/admin.php?p=config"><< <?php echo EDIT_BACK ?></a></td>
<td align="right"><input type="image" border="0" src="../img/admin/b/ok1.gif"></td>
</tr>
</table>