beautify the displayed page
This commit is contained in:
@@ -5,8 +5,11 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2001-01-04 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
|
* db_details.php3: beautify the displayed page.
|
||||||
|
|
||||||
2002-01-03 Marc Delisle <lem9@users.sourceforge.net>
|
2002-01-03 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* 2.2.3-rc1 released
|
* 2.2.3-rc1 released.
|
||||||
|
|
||||||
2001-01-03 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
2001-01-03 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
* libraries/build_dump.php3, lines 508-514: fixed a php error if there is
|
* libraries/build_dump.php3, lines 508-514: fixed a php error if there is
|
||||||
|
@@ -321,18 +321,6 @@ else if (PMA_MYSQL_INT_VERSION >= 32300) {
|
|||||||
?>
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td colspan="<?php echo (($cfgShowStats) ? '11' : '10'); ?>">
|
|
||||||
<img src="./images/arrow_<?php echo $text_dir; ?>.gif" border="0" width="38" height="22" alt="<?php echo $strWithChecked; ?>" />
|
|
||||||
<i><?php echo $strWithChecked; ?></i>
|
|
||||||
<input type="submit" name="submit_mult" value="<?php echo $strDrop; ?>" />
|
|
||||||
<i><?php echo $strOr; ?></i>
|
|
||||||
<input type="submit" name="submit_mult" value="<?php echo $strEmpty; ?>" />
|
|
||||||
<i><?php echo $strOr; ?></i>
|
|
||||||
<input type="submit" name="submit_mult" value="<?php echo $strPrintView; ?>" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
// Check all tables url
|
// Check all tables url
|
||||||
$checkall_url = 'db_details.php3'
|
$checkall_url = 'db_details.php3'
|
||||||
@@ -342,14 +330,25 @@ else if (PMA_MYSQL_INT_VERSION >= 32300) {
|
|||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td colspan="<?php echo (($cfgShowStats) ? '11' : '10'); ?>">
|
||||||
|
<img src="./images/arrow_<?php echo $text_dir; ?>.gif" border="0" width="38" height="22" alt="<?php echo $strWithChecked; ?>" />
|
||||||
<a href="<?php echo $checkall_url; ?>&checkall=1" onclick="setCheckboxes('tablesForm', true); return false;">
|
<a href="<?php echo $checkall_url; ?>&checkall=1" onclick="setCheckboxes('tablesForm', true); return false;">
|
||||||
<?php echo $GLOBALS['strCheckAll']; ?></a>
|
<?php echo $strCheckAll; ?></a>
|
||||||
</td>
|
/
|
||||||
<td> </td>
|
|
||||||
<td>
|
|
||||||
<a href="<?php echo $checkall_url; ?>" onclick="setCheckboxes('tablesForm', false); return false;">
|
<a href="<?php echo $checkall_url; ?>" onclick="setCheckboxes('tablesForm', false); return false;">
|
||||||
<?php echo $GLOBALS['strUncheckAll']; ?></a>
|
<?php echo $strUncheckAll; ?></a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="<?php echo (($cfgShowStats) ? '11' : '10'); ?>">
|
||||||
|
<img src="./images/spacer.gif" border="0" width="38" height="1" alt="" />
|
||||||
|
<i><?php echo $strWithChecked; ?></i>
|
||||||
|
<input type="submit" name="submit_mult" value="<?php echo $strDrop; ?>" />
|
||||||
|
<i><?php echo $strOr; ?></i>
|
||||||
|
<input type="submit" name="submit_mult" value="<?php echo $strEmpty; ?>" />
|
||||||
|
<i><?php echo $strOr; ?></i>
|
||||||
|
<input type="submit" name="submit_mult" value="<?php echo $strPrintView; ?>" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@@ -420,34 +419,31 @@ else {
|
|||||||
$i++;
|
$i++;
|
||||||
} // end while
|
} // end while
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
|
||||||
<tr>
|
|
||||||
<td colspan="9">
|
|
||||||
<img src="./images/arrow_<?php echo $text_dir; ?>.gif" border="0" width="38" height="22" alt="<?php echo $strWithChecked; ?>" />
|
|
||||||
<i><?php echo $strWithChecked; ?></i>
|
|
||||||
<input type="submit" name="submit_mult" value="<?php echo $strDrop; ?>" />
|
|
||||||
<?php $strOr . "\n"; ?>
|
|
||||||
<input type="submit" name="submit_mult" value="<?php echo $strEmpty; ?>" />
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
// Check all tables url
|
// Check all tables url
|
||||||
$checkall_url = 'db_details.php3'
|
$checkall_url = 'db_details.php3'
|
||||||
. '?lang=' . $lang
|
. '?lang=' . $lang
|
||||||
. '&server=' . $server
|
. '&server=' . $server
|
||||||
. '&db=' . urlencode($db);
|
. '&db=' . urlencode($db);
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td colspan="9">
|
||||||
<a href="<?php $checkall_url; ?>&checkall=1" onclick="setCheckboxes('tablesForm', true); return false;">
|
<img src="./images/arrow_<?php echo $text_dir; ?>.gif" border="0" width="38" height="22" alt="<?php echo $strWithChecked; ?>" />
|
||||||
<?php echo $GLOBALS['strCheckAll']; ?></a>
|
<a href="<?php echo $checkall_url; ?>&checkall=1" onclick="setCheckboxes('tablesForm', true); return false;">
|
||||||
|
<?php echo $strCheckAll; ?></a>
|
||||||
|
/
|
||||||
|
<a href="<?php echo $checkall_url; ?>" onclick="setCheckboxes('tablesForm', false); return false;">
|
||||||
|
<?php echo $strUncheckAll; ?></a>
|
||||||
</td>
|
</td>
|
||||||
<td> </td>
|
</tr>
|
||||||
<td>
|
|
||||||
<a href="<?php $checkall_url; ?>" onclick="setCheckboxes('tablesForm', false); return false;">
|
<tr>
|
||||||
<?php echo $GLOBALS['strUncheckAll']; ?></a>
|
<td colspan="9">
|
||||||
|
<img src="./images/spacer.gif" border="0" width="38" height="1" alt="" />
|
||||||
|
<i><?php echo $strWithChecked; ?></i>
|
||||||
|
<input type="submit" name="submit_mult" value="<?php echo $strDrop; ?>" />
|
||||||
|
<?php $strOr . "\n"; ?>
|
||||||
|
<input type="submit" name="submit_mult" value="<?php echo $strEmpty; ?>" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
Reference in New Issue
Block a user