beautify the displayed page
This commit is contained in:
@@ -5,8 +5,11 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$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>
|
||||
* 2.2.3-rc1 released
|
||||
* 2.2.3-rc1 released.
|
||||
|
||||
2001-01-03 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||
* 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>
|
||||
<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
|
||||
// Check all tables url
|
||||
$checkall_url = 'db_details.php3'
|
||||
@@ -342,14 +330,25 @@ else if (PMA_MYSQL_INT_VERSION >= 32300) {
|
||||
echo "\n";
|
||||
?>
|
||||
<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;">
|
||||
<?php echo $GLOBALS['strCheckAll']; ?></a>
|
||||
</td>
|
||||
<td> </td>
|
||||
<td>
|
||||
<?php echo $strCheckAll; ?></a>
|
||||
/
|
||||
<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>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -420,34 +419,31 @@ else {
|
||||
$i++;
|
||||
} // end while
|
||||
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
|
||||
$checkall_url = 'db_details.php3'
|
||||
. '?lang=' . $lang
|
||||
. '&server=' . $server
|
||||
. '&db=' . urlencode($db);
|
||||
echo "\n";
|
||||
?>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<?php $checkall_url; ?>&checkall=1" onclick="setCheckboxes('tablesForm', true); return false;">
|
||||
<?php echo $GLOBALS['strCheckAll']; ?></a>
|
||||
<td colspan="9">
|
||||
<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;">
|
||||
<?php echo $strCheckAll; ?></a>
|
||||
/
|
||||
<a href="<?php echo $checkall_url; ?>" onclick="setCheckboxes('tablesForm', false); return false;">
|
||||
<?php echo $strUncheckAll; ?></a>
|
||||
</td>
|
||||
<td> </td>
|
||||
<td>
|
||||
<a href="<?php $checkall_url; ?>" onclick="setCheckboxes('tablesForm', false); return false;">
|
||||
<?php echo $GLOBALS['strUncheckAll']; ?></a>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<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>
|
||||
</tr>
|
||||
</table>
|
||||
|
Reference in New Issue
Block a user