-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
311 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,7 @@ body { | |
.container .text-muted { | ||
margin: 20px 0; | ||
} | ||
|
||
.margin-left-10px { | ||
margin-left: 10px | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,26 @@ | ||
<?php | ||
|
||
// File adm_dbstat.php / FirebirdWebAdmin | ||
// Purpose displays the gstat output for the selected database | ||
// Author Lutz Brueckner <[email protected]> | ||
// Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005 by Lutz Brueckner, | ||
// published under the terms of the GNU General Public Licence v.2, | ||
// see file LICENCE for details | ||
|
||
if ($s_connected): | ||
|
||
?> | ||
<form method="post" action="<?php echo url_session($_SERVER['PHP_SELF']); ?>" name="db_stat_form"> | ||
<table class="table table-bordered"> | ||
<tr> | ||
<td> | ||
<?php | ||
echo '<b>'.$adm_strings['Analyze']."</b><br>\n"; | ||
if ($s_connected) { ?> | ||
<form method="post" action="<?php echo url_session($_SERVER['PHP_SELF']); ?>" name="db_stat_form" | ||
class="form-inline"> | ||
<div class="form-group"> | ||
<?php | ||
echo '<label for="db_stat_option">' . $adm_strings['Analyze'] . "</label>"; | ||
echo get_indexed_selectlist('db_stat_option', database_statistic_options(), $s_dbstat_option); ?> | ||
</td> | ||
<td valign="bottom"> | ||
<input type="submit" class="btn btn-default" name="db_stat_select" value="<?php echo $button_strings['Select']; ?>"> | ||
</td> | ||
</tr> | ||
</table> | ||
</form> | ||
<div class="if"> | ||
<iframe src="<?php echo url_session('./iframe_content.php?key='.$iframekey_dbstat); ?>" width="98%" height="<?php echo $s_cust['iframeheight']; ?>" name="adm_dbstat_iframe"></iframe> | ||
</div> | ||
<?php | ||
|
||
endif; | ||
|
||
?> | ||
</div> | ||
<input type="submit" class="btn btn-default" name="db_stat_select" | ||
value="<?php echo $button_strings['Select']; ?>"> | ||
</form> | ||
<br/> | ||
<div class="if"> | ||
<iframe src="<?php echo url_session('./iframe_content.php?key=' . $iframekey_dbstat); ?>" width="98%" | ||
height="<?php echo $s_cust['iframeheight']; ?>" name="adm_dbstat_iframe"></iframe> | ||
</div> | ||
<?php } ?> |
Oops, something went wrong.