redesign part 3
This commit is contained in:
@@ -5,6 +5,12 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2004-06-13 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* many files: redesign part 3, thanks to Michael Keck (mkkeck).
|
||||
New /themes structure for Theme management
|
||||
TODO: code improvement, access to /lang from themes/index.php,
|
||||
possible logo change
|
||||
|
||||
2004-06-11 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* lang/spanish: Updated, thanks to Daniel Hinostroza (hinostroza).
|
||||
|
||||
|
@@ -526,15 +526,24 @@ $cfg['NaturalOrder'] = TRUE; // Sort table and database in natura
|
||||
// 2004-05-08 rabus: We need to rearrange these variables.
|
||||
// 2004-06-03 nijel: We also need to add these to Documentation.html
|
||||
|
||||
$cfg['ShowHttpHostTitle'] = FALSE; // show HTTP host in browsers window title (true|false)?
|
||||
$cfg['ShowHttpHostTitle'] = TRUE; // show HttpHost in browsers window title (true|false)?
|
||||
$cfg['SetHttpHostTitle'] = ''; // if ShowHttpHostTitle=true, please set your host (server)
|
||||
// or an other string, wich should be shown in browsers window title.
|
||||
// If not set (or empty), the PMA will get your real host address.
|
||||
// If not set (or empty), the PMA will get your real Host-Adress.
|
||||
|
||||
$cfg['ErrorIconic'] = TRUE; // show some icons for warnings, errors and informations (true|false)?
|
||||
$cfg['MainPageIconic'] = TRUE; // show icons in list on main page (true|false)?
|
||||
$cfg['MainPageIconic'] = TRUE; // show icons in list on main page and on navigation bar (true|false)?
|
||||
$cfg['ReplaceHelpImg'] = TRUE; // show help button instead of strDocumentation (true|false)?
|
||||
|
||||
// theme manager
|
||||
$cfg['ThemePath'] = 'themes'; // using themes manager please set up here the path to 'themes'
|
||||
// else leave empty
|
||||
$cfg['ThemeManager'] = TRUE; // if you want to use selectable themes and if ThemesPath not empty
|
||||
// set it to true, else set it to false (default is false);
|
||||
$cfg['ThemeDefault'] = 'original'; // set up default theme, if ThemePath not empty
|
||||
// you can set up here an valid path to themes or 'original' for
|
||||
// the original pma-theme
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
@@ -20,11 +20,26 @@ if (!isset($js_frame)) {
|
||||
$js_frame = 'left';
|
||||
}
|
||||
|
||||
// 2004-05-30: Michael Keck (mail@mnichaelkeck.de)
|
||||
// check, if select_theme.lib.php exists
|
||||
// and include it
|
||||
$tmp_file_lib = './libraries/select_theme.lib.php';
|
||||
if (@file_exists($tmp_file_lib) && isset($GLOBALS['cfg']['ThemePath']) && !empty($GLOBALS['cfg']['ThemePath'])){
|
||||
require_once($tmp_file_lib);
|
||||
}else{
|
||||
$pmaTheme = 'original';
|
||||
}
|
||||
|
||||
if ($js_frame == 'left') {
|
||||
/************************************************************************************
|
||||
* LEFT FRAME
|
||||
************************************************************************************/
|
||||
|
||||
// 2004-05-30: Michael Keck (mail@michaelkeck.de)
|
||||
// Check, if theme_left.css.php exists and include
|
||||
$tmp_file = './' . $GLOBALS['cfg']['ThemePath'] . '/' . $pmaTheme . '/css/theme_left.css.php';
|
||||
if (@file_exists($tmp_file) && $pmaTheme != 'original') {
|
||||
include($tmp_file);
|
||||
}else{ // else use default styles
|
||||
/**
|
||||
* Add styles for positioned layers
|
||||
*/
|
||||
@@ -70,8 +85,7 @@ div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_
|
||||
.item, .item:active, .item:hover, .tblItem, .tblItem:active {font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none}
|
||||
.tblItem:hover {color: #FF0000; text-decoration: underline}
|
||||
<?php
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
?>
|
||||
/* Additional effects for NON-IE4 */
|
||||
.parent {font-family: <?php echo $left_font_family; ?>; color: #000000; text-decoration: none; position: absolute; visibility: hidden}
|
||||
@@ -98,27 +112,38 @@ div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_
|
||||
body {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
input {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
select {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; background-color: #ffffff; color: #000000}
|
||||
hr{ color: #ffffff; background-color: #ffffff; border: 0; height: 1px; }
|
||||
<?php
|
||||
} // end of include theme_left.css.php
|
||||
} elseif ($js_frame == 'print') {
|
||||
/************************************************************************************
|
||||
* PRINT VIEW
|
||||
************************************************************************************/
|
||||
|
||||
// 2004-05-30: Michael Keck (mail@michaelkeck.de)
|
||||
// Check, if theme_print.css.php exists and include
|
||||
$tmp_file = './' . $GLOBALS['cfg']['ThemePath'] . '/' . $pmaTheme . '/css/theme_print.css.php';
|
||||
if (@file_exists($tmp_file) && $pmaTheme != 'original') {
|
||||
include($tmp_file);
|
||||
} else { // else use default styles
|
||||
?>
|
||||
/* For printview */
|
||||
body {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #ffffff}
|
||||
h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_biggest; ?>; font-weight: bold}
|
||||
table {border-width:1px; border-color:#000000; border-style:solid; border-collapse:collapse; border-spacing:0}
|
||||
th {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #000000; background-color: #ffffff; border-width:1px; border-color:#000000; border-style:solid; padding:2px}
|
||||
th.td { color: transparent; background-color: transparent;}
|
||||
td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #ffffff; border-width:1px; border-color:#000000; border-style:solid; padding:2px}
|
||||
th.td {font-weight: normal;}
|
||||
<?php
|
||||
} // end of include theme_print.css.php
|
||||
} else {
|
||||
/************************************************************************************
|
||||
* RIGHT FRAME
|
||||
************************************************************************************/
|
||||
|
||||
// 2004-05-30: Michael Keck (mail@michaelkeck.de)
|
||||
// Check, if theme_right.css.php exists and include
|
||||
$tmp_file = './' . $GLOBALS['cfg']['ThemePath'] . '/' . $pmaTheme . '/css/theme_right.css.php';
|
||||
if (@file_exists($tmp_file) && $pmaTheme != 'original') {
|
||||
include($tmp_file);
|
||||
} else { // else use default styles
|
||||
?>
|
||||
/* Always enabled stylesheets (right frame) */
|
||||
body {
|
||||
@@ -139,9 +164,8 @@ body {
|
||||
|
||||
pre, tt {font-size: <?php echo $font_size; ?>}
|
||||
th {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #000000; background-color: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>}
|
||||
th.td {font-weight: normal; color: inherit; background-color: inherit; ?>}
|
||||
td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
form {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
form {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; padding: 0px; margin: 0px;}
|
||||
input {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
input.textfield {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
|
||||
select {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
|
||||
@@ -170,6 +194,7 @@ dfn {font-style: normal}
|
||||
dfn:hover {font-style: normal; cursor: help}
|
||||
.nav {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
.warning {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #FF0000}
|
||||
.tblcomment {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_smallest; ?>; font-weight: normal; color: #000099; }
|
||||
td.topline {font-size: 1px}
|
||||
td.tab {
|
||||
border-top: 1px solid #999;
|
||||
@@ -227,153 +252,6 @@ button.mult_submit {
|
||||
border: 1px dashed #000000;
|
||||
}
|
||||
|
||||
/* Warning showing div with right border and optional icon */
|
||||
|
||||
div.warning {
|
||||
border: 1px solid red;
|
||||
<?php if ($cfg['ErrorIconic']) { ?>
|
||||
background-image: url(../images/s_warn.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 10px 50%;
|
||||
padding: 10px 10px 10px 36px;
|
||||
margin: 0px;
|
||||
<?php } ?>
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
div.error {
|
||||
width: 100%;
|
||||
border: 1px solid #cc0000;
|
||||
background-color: #ffffcc;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
div.error div.text {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
div.error div.head {
|
||||
background-color: #cc0000;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
<?php if ($cfg['ErrorIconic']) { ?>
|
||||
background-image: url(../images/s_error.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 10px 50%;
|
||||
padding: 2px 2px 2px 30px;
|
||||
<?php } ?>
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
/* some new styles added 20047-05-05 by Michael Keck (mkkeck) */
|
||||
|
||||
/* tables */
|
||||
.tblHeaders {
|
||||
background-color: #9999CC;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
}
|
||||
.tblFooters {
|
||||
background-color: #9999CC;
|
||||
font-weight: normal;
|
||||
color: #000000;
|
||||
}
|
||||
/* forbidden, no privilegs */
|
||||
.noPrivileges{
|
||||
color: #cc0000;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* list elements */
|
||||
ul.mainRight {
|
||||
margin: 0px;
|
||||
padding-left:2em;
|
||||
padding-right:2em;
|
||||
}
|
||||
|
||||
ul.mainRight li {
|
||||
white-space: nowrap;
|
||||
padding-left: 0.5em;
|
||||
padding-top: 0.1em;
|
||||
padding-bottom: 0.1em;
|
||||
}
|
||||
ul.mainLeft {
|
||||
margin: 0px;
|
||||
padding-left:2em;
|
||||
padding-right:2em;
|
||||
}
|
||||
|
||||
ul.mainLeft li {
|
||||
white-space: nowrap;
|
||||
padding-left: 0.5em;
|
||||
padding-top: 0.1em;
|
||||
padding-bottom: 0.1em;
|
||||
}
|
||||
|
||||
|
||||
<?php if ($cfg['MainPageIconic']) { ?>
|
||||
li.lstPhpInfo {
|
||||
list-style: url(../images/php_sym.png);
|
||||
}
|
||||
li.lstPmaDocs {
|
||||
list-style: url(../images/b_docs.png);
|
||||
}
|
||||
li.lstPmaPage {
|
||||
list-style: url(../images/b_home.png);
|
||||
}
|
||||
li.lstPmaLang {
|
||||
list-style: url(../images/s_lang.png);
|
||||
}
|
||||
li.lstPmaChar {
|
||||
list-style: url(../images/s_rights.png);
|
||||
}
|
||||
li.lstNewdb {
|
||||
list-style: url(../images/b_newdb.png);
|
||||
}
|
||||
li.lstStatus {
|
||||
list-style: url(../images/s_status.png);
|
||||
}
|
||||
li.lstVars {
|
||||
list-style: url(../images/s_vars.png);
|
||||
}
|
||||
li.lstProcess {
|
||||
list-style: url(../images/s_process.png);
|
||||
}
|
||||
li.lstPrivileges {
|
||||
list-style: url(../images/s_rights.png);
|
||||
}
|
||||
li.lstCollations {
|
||||
list-style: url(../images/s_asci.png);
|
||||
}
|
||||
li.lstReload {
|
||||
list-style: url(../images/s_reload.png);
|
||||
}
|
||||
li.lstDatabases {
|
||||
list-style: url(../images/s_db.png);
|
||||
}
|
||||
li.lstExport {
|
||||
list-style: url(../images/b_export.png);
|
||||
}
|
||||
li.lstLogoff {
|
||||
list-style: url(../images/s_loggoff.png);
|
||||
}
|
||||
li.lstPasswd {
|
||||
list-style: url(../images/s_passwd.png);
|
||||
}
|
||||
<?php } ?>
|
||||
<?php if ($cfg['MainPageIconic']) { ?>
|
||||
li.lstUsradd {
|
||||
list-style: url(../images/b_usradd.png);
|
||||
}
|
||||
li.lstUsrdrop {
|
||||
list-style: url(../images/b_usrdrop.png);
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
hr{ color: #666699; background-color: #6666cc; border: 0; height: 1px; }
|
||||
|
||||
/* end of some new styles added 20047-05-05 by Michael Keck (mkkeck) */
|
||||
|
||||
.print{font-family:arial;font-size:8pt;}
|
||||
|
||||
/* MySQL Parser */
|
||||
@@ -394,7 +272,160 @@ hr{ color: #666699; background-color: #6666cc; border: 0; height: 1px; }
|
||||
.syntax_alpha_variable {}
|
||||
.syntax_quote {white-space: pre;}
|
||||
.syntax_quote_backtick {}
|
||||
|
||||
hr{ color: #666666; background-color: #666666; border: 0; height: 1px; }
|
||||
|
||||
/* new styles for navigation */
|
||||
|
||||
.nav {
|
||||
font-family: <?php echo $right_font_family; ?>;
|
||||
color: #000000;
|
||||
border-top: none;
|
||||
border-right: none;
|
||||
border-left: none;
|
||||
border-bottom: 1px solid #666;
|
||||
}
|
||||
.navSpacer {
|
||||
width: 5px;
|
||||
height: 16px;
|
||||
}
|
||||
.navNormal, .navDrop, .navActive {
|
||||
font-family: <?php echo $right_font_family; ?>;
|
||||
font-size: <?php echo $font_size; ?>;
|
||||
font-weight: bold;
|
||||
border-top: 1px solid #999;
|
||||
border-right: 1px solid #666;
|
||||
border-left: 1px solid #999;
|
||||
border-bottom: none;
|
||||
border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
padding: 2px 5px 2px 5px;
|
||||
}
|
||||
.navNormal {
|
||||
color: #000000;
|
||||
background-color: #E5E5E5;
|
||||
}
|
||||
.navActive{
|
||||
font-family: <?php echo $right_font_family; ?>;
|
||||
font-size: <?php echo $font_size; ?>;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
background-color: #CCCCCC;
|
||||
}
|
||||
.navDrop{
|
||||
color: #000000;
|
||||
background-color: #E5E5E5;
|
||||
}
|
||||
.navNormal a:link, .navNormal a:active, .navNormal a:visited, .navActive a:link, .navActive a:active, .navActive a:visited{
|
||||
color: #0000FF;
|
||||
}
|
||||
|
||||
.navDrop a:link, .navDrop a:active, .navDrop a:visited{
|
||||
color: #FF0000;
|
||||
}
|
||||
.navDrop a:hover{
|
||||
color: #FFFFFF;
|
||||
background-color: #FF0000;
|
||||
}
|
||||
.navNormal a:hover, .navActive a:hover{
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
/* Warning showing div with right border and optional icon */
|
||||
|
||||
div.errorhead {
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
text-align: left;
|
||||
<?php if ($cfg['ErrorIconic'] && isset($js_isDOM) && $js_isDOM != '0') { ?>
|
||||
background-image: url(../images/s_error.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 50%;
|
||||
padding: 0px 0px 0px 25px;
|
||||
<?php } ?>
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
/* tables */
|
||||
.tblError {
|
||||
border: 1px solid #FF0000;
|
||||
background-color: #FFFFCC;
|
||||
}
|
||||
.tblWarn, div.tblWarn {
|
||||
border: 1px solid #FF0000;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
div.tblWarn {
|
||||
padding: 5px 5px 5px 5px;
|
||||
margin: 0px 0px 5px 0px;
|
||||
width: 100%;
|
||||
}
|
||||
.tblHeaders {
|
||||
background-color: <?php echo $cfg['LeftBgColor']; ?>;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
}
|
||||
.tblFooters {
|
||||
background-color: <?php echo $cfg['LeftBgColor']; ?>;
|
||||
font-weight: normal;
|
||||
color: #000000;
|
||||
}
|
||||
.tblHeaders a:link, .tblHeaders a:active, .tblHeaders a:visited, .tblFooters a:link, .tblFooters a:active, .tblFooters a:visited {
|
||||
color: #0000FF;
|
||||
}
|
||||
.tblHeaders a:hover, .tblFooters a:hover { color: #FF0000; }
|
||||
.tblHeadError {
|
||||
background-color: #FF0000;
|
||||
font-weight: bold;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.tblHeadWarn {
|
||||
background-color: #FFCC00;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
}
|
||||
/* forbidden, no privilegs */
|
||||
.noPrivileges{
|
||||
color: #FF0000;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Heading */
|
||||
|
||||
.serverinfo {
|
||||
font-family: <?php echo $right_font_family; ?>;
|
||||
font-size: <?php echo $font_size; ?>;
|
||||
font-weight: normal;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
padding: 0px 0px 10px 0px;
|
||||
}
|
||||
<?php if (isset($js_isDOM) && $js_isDOM != '0') { ?>
|
||||
.serverinfo a:link, .serverinfo a:activ, .serverinfo a:visited {
|
||||
font-family: <?php echo $right_font_family; ?>;
|
||||
font-size: <?php echo $font_size; ?>;
|
||||
font-weight: bolder;
|
||||
}
|
||||
.serverinfo a img{
|
||||
vertical-align: middle;
|
||||
margin: 0px 1px 0px 2px;
|
||||
}
|
||||
.serverinfo div{
|
||||
background-image: url(../images/item_ltr.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% 50%;
|
||||
width: 20px;
|
||||
height: 16px;
|
||||
}
|
||||
#textSQLDUMP {
|
||||
width: 95%;
|
||||
height: 95%;
|
||||
font-family: "Courier New", Courier, mono;
|
||||
font-size: 12px;
|
||||
}
|
||||
<?php } // end of isDom ?>
|
||||
<?php
|
||||
} // end of include theme_right.css.php
|
||||
echo PMA_SQP_buildCssData();
|
||||
}
|
||||
|
||||
@@ -486,8 +517,7 @@ td.tab a {
|
||||
}
|
||||
|
||||
/* For light */
|
||||
div.tab {
|
||||
}
|
||||
div.tab { }
|
||||
|
||||
/* Highlight active tab */
|
||||
td.activetab {
|
||||
@@ -504,54 +534,3 @@ textarea {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
/* Heading */
|
||||
|
||||
div.spacer {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
h1 span {
|
||||
display: block;
|
||||
float: left;
|
||||
clear: none;
|
||||
width: auto;
|
||||
padding: 2px 2px 5px 2px;
|
||||
margin: 0px;
|
||||
font-family: <?php echo $right_font_family; ?>;
|
||||
font-size: <?php echo $font_size; ?>;
|
||||
font-weight: normal;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
h1 span a {
|
||||
<?php if ($cfg['ErrorIconic']) { ?>
|
||||
background-repeat: no-repeat;
|
||||
background-position: 2px 50%;
|
||||
padding-left: 20px;
|
||||
<?php } ?>
|
||||
}
|
||||
|
||||
h1 span a {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
<?php if ($cfg['PropertiesIconic']) { ?>
|
||||
h1 span.server a {
|
||||
background-image: url(../images/s_host.png);
|
||||
}
|
||||
|
||||
h1 span.database a {
|
||||
background-image: url(../images/s_db.png);
|
||||
}
|
||||
|
||||
h1 span.table a {
|
||||
background-image: url(../images/s_tbl.png);
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
h1 span.database:before , h1 span.table:before {
|
||||
content: '>';
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
@@ -59,12 +59,14 @@ $strHiddenFields = ' <input type="hidden" name="is_js_confirmed" value="0
|
||||
. ' <input type="hidden" name="prev_sql_query" value="' . ((!empty($query_to_display)) ? htmlspecialchars($query_to_display) : '') . '" />' . "\n";
|
||||
?>
|
||||
<!-- Query box, sql file loader and bookmark support -->
|
||||
<form method="post" action="read_dump.php"<?php if ($is_upload) echo ' enctype="multipart/form-data"'; ?> onsubmit="return checkSqlQuery(this)" name="sqlform">
|
||||
<?php
|
||||
echo $strHiddenFields;
|
||||
?>
|
||||
<a name="querybox"></a>
|
||||
<table border="0" cellpadding="2" cellspacing="0">
|
||||
<form method="post" action="read_dump.php"<?php if ($is_upload) echo ' enctype="multipart/form-data"'; ?> onsubmit="return checkSqlQuery(this)" name="sqlform">
|
||||
<tr><td class="tblHeaders" colspan="2">
|
||||
<?php
|
||||
echo $strHiddenFields;
|
||||
// if you want navigation:
|
||||
$strDBLink = '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . $header_url_qry . '&db=' . urlencode($db) . '">'
|
||||
. htmlspecialchars($db) . '</a>';
|
||||
@@ -95,7 +97,7 @@ if (!empty($query_to_display)) {
|
||||
// loic1: displays import dump feature only if file upload available
|
||||
if ($is_upload) {
|
||||
?>
|
||||
<tr><td colspan="2"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr>
|
||||
<tr><td colspan="2"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>
|
||||
<tr>
|
||||
<td colspan="2" class="tblHeaders">
|
||||
<?php
|
||||
@@ -173,9 +175,10 @@ if (!empty($cfg['UploadDir'])) {
|
||||
@closedir($handle);
|
||||
}
|
||||
else {
|
||||
$upload_dir_error = '<tr><td colspan="2"><div class="error"><div class="head">' . $strError . '</div>'
|
||||
. '<div class="text">' . $strWebServerUploadDirectoryError
|
||||
. '</div></div></td></tr>';
|
||||
$upload_dir_error = '<tr><td colspan="2"><img src="./images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>' . "\n"
|
||||
. '<tr><th colspan="2" class="tblHeadError"><div class="errorhead">' . $strError . '</div></th></tr>' . "\n"
|
||||
. '<tr><td colspan="2" class="tblError">' . $strWebServerUploadDirectoryError
|
||||
. '</td></tr>' . "\n";
|
||||
}
|
||||
} // end if (web-server upload directory)
|
||||
// Charset conversion options
|
||||
@@ -208,7 +211,7 @@ if ($is_upload || $is_upload_dir) {
|
||||
// Bookmark Support
|
||||
if ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table']) {
|
||||
if (($bookmark_list = PMA_listBookmarks($db, $cfg['Bookmark'])) && count($bookmark_list) > 0) {
|
||||
echo ' <tr><td colspan="2"><img src="./images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr>' . "\n";
|
||||
echo ' <tr><td colspan="2"><img src="./images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>' . "\n";
|
||||
echo ' <tr><td colspan="2" class="tblHeaders"> <i>' . $strOr . '</i></td></tr>' . "\n";
|
||||
echo ' <tr bgcolor="' . $cfg['BgcolorOne'] . '"><td colspan="2">' . "\n";
|
||||
echo ' <b>' . $strBookmarkQuery . ':</b> ' . "\n";
|
||||
@@ -222,7 +225,7 @@ if ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table']) {
|
||||
echo ' ' . $strVar . ' ';
|
||||
if ($cfg['ReplaceHelpImg']){
|
||||
echo '<a href="./Documentation.html#faqbookmark" target="documentation">'
|
||||
. '<img src="./images/b_help.png" border="0" width="11" height="11" align="absmiddle" alt="' . $strDocu . '" /></a>';
|
||||
. '<img src="' .$pmaThemeImage . 'b_help.png" border="0" width="11" height="11" align="absmiddle" alt="' . $strDocu . '" /></a>';
|
||||
}else{
|
||||
echo '(<a href="./Documentation.html#faqbookmark" target="documentation">' . $strDocu . '</a>): ';
|
||||
}
|
||||
@@ -247,8 +250,8 @@ if (isset($upload_dir_error)) {
|
||||
echo $upload_dir_error;
|
||||
}
|
||||
?>
|
||||
</form>
|
||||
</table>
|
||||
</form>
|
||||
<?php
|
||||
/**
|
||||
* Displays the footer
|
||||
|
@@ -10,16 +10,14 @@ $sub_part = '_export';
|
||||
require('./db_details_common.php');
|
||||
$url_query .= '&goto=db_details_export.php';
|
||||
require('./db_details_db_info.php');
|
||||
|
||||
?>
|
||||
<!-- Dump of Database -->
|
||||
<?php
|
||||
/**
|
||||
* Displays the form
|
||||
*/
|
||||
?>
|
||||
<h2>
|
||||
<?php echo $strViewDumpDB . "\n"; ?>
|
||||
</h2>
|
||||
$export_page_title = $strViewDumpDB;
|
||||
|
||||
<?php
|
||||
$multi_values = '';
|
||||
if ($num_tables > 1) {
|
||||
|
||||
@@ -48,8 +46,7 @@ if ($num_tables > 1) {
|
||||
$multi_values .= '<br />
|
||||
<a href="' . $checkall_url . '&selectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>
|
||||
/
|
||||
<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>
|
||||
<br /><br />';
|
||||
<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>';
|
||||
} elseif ($num_tables == 0) {
|
||||
echo $strDatabaseNoTable;
|
||||
require_once('./footer.inc.php');
|
||||
|
@@ -48,10 +48,11 @@ if ($cfg['AllowUserDropDatabase']) {
|
||||
. urlencode(sprintf($strDatabaseHasBeenDropped, htmlspecialchars(PMA_backquote($db))))
|
||||
. '&goto=main.php&back=db_details' . $sub_part . '.php&reload=1&purge=1';
|
||||
$att5 = 'onclick="return confirmLinkDropDB(this, \'DROP DATABASE ' . PMA_jsFormat($db) . '\')"';
|
||||
$class5 = 'drop';
|
||||
$class5 = 'Drop';
|
||||
}
|
||||
else {
|
||||
$lnk5 = '';
|
||||
$class5 = 'Drop';
|
||||
}
|
||||
|
||||
|
||||
@@ -62,25 +63,32 @@ else {
|
||||
if ($cfg['LightTabs']) {
|
||||
echo ' ';
|
||||
} else {
|
||||
echo '<table border="0" cellspacing="0" cellpadding="3" width="100%" class="tabs">
|
||||
<tr>
|
||||
<td width="8"> </td>';
|
||||
echo '<table border="0" cellspacing="0" cellpadding="0" width="100%">' . "\n"
|
||||
. ' <tr>' . "\n"
|
||||
. ' <td class="nav" align="left" nowrap="nowrap" valign="bottom">'
|
||||
. ' <table border="0" cellpadding="0" cellspacing="0"><tr>'
|
||||
. ' <td nowrap="nowrap"><img src="./images/spacer.gif" width="2" height="1" border="0" alt="" /></td>'
|
||||
. ' <td class="navSpacer"><img src="./images/spacer.gif" width="1" height="1" border="0" alt="" /></td>';
|
||||
}
|
||||
|
||||
echo PMA_printTab($strStructure, 'db_details_structure.php', $url_query);
|
||||
echo PMA_printTab($strSQL, 'db_details.php', $url_query . '&db_query_force=1');
|
||||
echo PMA_printTab($strExport, $lnk3, $arg3);
|
||||
echo PMA_printTab($strSearch, $lnk4, $arg4);
|
||||
echo PMA_printTab($strQBE, ($num_tables > 0) ? 'db_details_qbe.php' : '', $url_query);
|
||||
echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_props.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strStructure.'" />' : '') . $strStructure, 'db_details_structure.php', $url_query);
|
||||
echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_sql.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strSQL.'" />' : '') . $strSQL, 'db_details.php', $url_query . '&db_query_force=1');
|
||||
echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_export.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strExport.'" />' : '') . $strExport, $lnk3, $arg3);
|
||||
echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_search.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strSearch.'" />' : '') . $strSearch, $lnk4, $arg4);
|
||||
echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 's_db.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strQBE.'" />' : '') . $strQBE, ($num_tables > 0) ? 'db_details_qbe.php' : '', $url_query);
|
||||
|
||||
// Displays drop link
|
||||
if ($lnk5) {
|
||||
echo PMA_printTab($strDrop, $lnk5, $arg5, $att5, $class5);
|
||||
echo PMA_printTab(($GLOBALS['cfg']['MainPageIconic'] ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_deltbl.png" width="16" height="16" border="0" hspace="2" align="absmiddle" alt="'.$strDrop.'" />' : '') . $strDrop, $lnk5, $arg5, $att5, $class5);
|
||||
} // end if
|
||||
echo "\n";
|
||||
|
||||
if (!$cfg['LightTabs']) {
|
||||
echo '</tr></table>';
|
||||
echo ' <td nowrap="nowrap"><img src="./images/spacer.gif" width="2" height="1" border="0" alt="" /></td>'
|
||||
. ' </tr></table>' . "\n"
|
||||
. ' </td>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. '</table>';
|
||||
} else {
|
||||
echo '<br />';
|
||||
}
|
||||
|
@@ -172,12 +172,12 @@ $realwidth = $wid . 'ex';
|
||||
|
||||
<!-- Query by example form -->
|
||||
<form action="db_details_qbe.php" method="post">
|
||||
<table border="<?php echo $cfg['Border']; ?>">
|
||||
<table border="<?php echo $cfg['Border']; ?>" cellpadding="2" cellspacing="1">
|
||||
|
||||
<!-- Fields row -->
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
|
||||
<b><?php echo $strField; ?> : </b>
|
||||
<b><?php echo $strField; ?>: </b>
|
||||
</td>
|
||||
<?php
|
||||
$z = 0;
|
||||
@@ -238,7 +238,7 @@ for ($x = 0; $x < $col; $x++) {
|
||||
<!-- Sort row -->
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
|
||||
<b><?php echo $strSort; ?> : </b>
|
||||
<b><?php echo $strSort; ?>: </b>
|
||||
</td>
|
||||
<?php
|
||||
$z = 0;
|
||||
@@ -303,7 +303,7 @@ for ($x = 0; $x < $col; $x++) {
|
||||
<!-- Show row -->
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
|
||||
<b><?php echo $strShow; ?> : </b>
|
||||
<b><?php echo $strShow; ?>: </b>
|
||||
</td>
|
||||
<?php
|
||||
$z = 0;
|
||||
@@ -341,7 +341,7 @@ for ($x = 0; $x < $col; $x++) {
|
||||
<!-- Criteria row -->
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
|
||||
<b><?php echo $strCriteria; ?> : </b>
|
||||
<b><?php echo $strCriteria; ?>: </b>
|
||||
</td>
|
||||
<?php
|
||||
$z = 0;
|
||||
@@ -394,10 +394,10 @@ for ($y = 0; $y <= $row; $y++) {
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
|
||||
<!-- Row controls -->
|
||||
<table bgcolor="<?php echo $bgcolor; ?>">
|
||||
<table bgcolor="<?php echo $bgcolor; ?>" cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
|
||||
<small><?php echo $strQBEIns; ?> :</small>
|
||||
<small><?php echo $strQBEIns; ?>:</small>
|
||||
<input type="checkbox" name="InsRow[<?php echo $w; ?>]" />
|
||||
</td>
|
||||
<td align="<?php echo $cell_align_right; ?>">
|
||||
@@ -410,11 +410,11 @@ for ($y = 0; $y <= $row; $y++) {
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
|
||||
<small><?php echo $strQBEDel; ?> :</small>
|
||||
<small><?php echo $strQBEDel; ?>:</small>
|
||||
<input type="checkbox" name="DelRow[<?php echo $w; ?>]" />
|
||||
</td>
|
||||
<td align="<?php echo $cell_align_right; ?>">
|
||||
<b><?php echo $strOr; ?> :</b>
|
||||
<b><?php echo $strOr; ?>:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="radio" name="AndOrRow[<?php echo $w; ?>]" value="or"<?php echo $chk['or']; ?> />
|
||||
@@ -473,16 +473,16 @@ for ($y = 0; $y <= $row; $y++) {
|
||||
echo "\n";
|
||||
?>
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
|
||||
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap">
|
||||
<!-- Row controls -->
|
||||
<table bgcolor="<?php echo $bgcolor; ?>">
|
||||
<table bgcolor="<?php echo $bgcolor; ?>" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
|
||||
<small><?php echo $strQBEIns; ?> :</small>
|
||||
<small><?php echo $strQBEIns; ?>:</small>
|
||||
<input type="checkbox" name="InsRow[<?php echo $w; ?>]" />
|
||||
</td>
|
||||
<td align="<?php echo $cell_align_right; ?>">
|
||||
<b><?php echo $strAnd; ?> :</b>
|
||||
<b><?php echo $strAnd; ?>:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="radio" name="AndOrRow[<?php echo $w; ?>]" value="and"<?php echo $chk['and']; ?> />
|
||||
@@ -490,11 +490,11 @@ for ($y = 0; $y <= $row; $y++) {
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
|
||||
<small><?php echo $strQBEDel; ?> :</small>
|
||||
<small><?php echo $strQBEDel; ?>:</small>
|
||||
<input type="checkbox" name="DelRow[<?php echo $w; ?>]" />
|
||||
</td>
|
||||
<td align="<?php echo $cell_align_right; ?>">
|
||||
<b><?php echo $strOr; ?> :</b>
|
||||
<b><?php echo $strOr; ?>:</b>
|
||||
</td>
|
||||
<td>
|
||||
<input type="radio" name="AndOrRow[<?php echo $w; ?>]" value="or"<?php echo $chk['or']; ?> />
|
||||
@@ -551,7 +551,7 @@ for ($y = 0; $y <= $row; $y++) {
|
||||
<!-- Modify columns -->
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" bgcolor="<?php echo $cfg['ThBgcolor']; ?>">
|
||||
<b><?php echo $strModify; ?> : </b>
|
||||
<b><?php echo $strModify; ?>: </b>
|
||||
</td>
|
||||
<?php
|
||||
$z = 0;
|
||||
@@ -567,9 +567,9 @@ for ($x = 0; $x < $col; $x++) {
|
||||
}
|
||||
?>
|
||||
<td align="center" bgcolor="<?php echo $cfg['BgcolorTwo']; ?>">
|
||||
<b><?php echo $strOr; ?> :</b>
|
||||
<b><?php echo $strOr; ?>:</b>
|
||||
<input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="or"<?php echo $chk['or']; ?> />
|
||||
<b><?php echo $strAnd; ?> :</b>
|
||||
<b><?php echo $strAnd; ?>:</b>
|
||||
<input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="and"<?php echo $chk['and']; ?> />
|
||||
<br />
|
||||
<?php echo $strQBEIns . "\n"; ?>
|
||||
@@ -598,9 +598,9 @@ for ($x = 0; $x < $col; $x++) {
|
||||
}
|
||||
?>
|
||||
<td align="center" bgcolor="<?php echo $cfg['BgcolorTwo']; ?>">
|
||||
<b><?php echo $strOr; ?> :</b>
|
||||
<b><?php echo $strOr; ?>:</b>
|
||||
<input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="or"<?php echo $chk['or']; ?> />
|
||||
<b><?php echo $strAnd; ?> :</b>
|
||||
<b><?php echo $strAnd; ?>:</b>
|
||||
<input type="radio" name="AndOrCol[<?php echo $z; ?>]" value="and"<?php echo $chk['and']; ?> />
|
||||
<br />
|
||||
<?php echo $strQBEIns . "\n"; ?>
|
||||
@@ -614,79 +614,72 @@ for ($x = 0; $x < $col; $x++) {
|
||||
} // end for
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
</table>
|
||||
|
||||
<!-- Other controls -->
|
||||
<?php echo PMA_generate_common_hidden_inputs(); ?>
|
||||
<table border="0" cellpadding="2" cellspacing="1">
|
||||
<tr>
|
||||
<td nowrap="nowrap"><input type="hidden" value="<?php echo htmlspecialchars($db); ?>" name="db" />
|
||||
<input type="hidden" value="<?php echo $z; ?>" name="Columns" />
|
||||
<?php
|
||||
$w--;
|
||||
?>
|
||||
<input type="hidden" value="<?php echo $w; ?>" name="Rows" />
|
||||
<?php echo $strAddDeleteRow; ?>:
|
||||
<select size="1" name="Add_Row" style="vertical-align: middle">
|
||||
<option value="-3">-3</option>
|
||||
<option value="-2">-2</option>
|
||||
<option value="-1">-1</option>
|
||||
<option value="0" selected="selected">0</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="10"> </td>
|
||||
<td nowrap="nowrap"><?php echo $strAddDeleteColumn; ?>:
|
||||
<select size="1" name="Add_Col" style="vertical-align: middle">
|
||||
<option value="-3">-3</option>
|
||||
<option value="-2">-2</option>
|
||||
<option value="-1">-1</option>
|
||||
<option value="0" selected="selected">0</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
</select>
|
||||
</td>
|
||||
<td width="10"> </td>
|
||||
<!-- Generates a query -->
|
||||
<td><input type="submit" name="modify" value="<?php echo $strUpdateQuery; ?>" /></td>
|
||||
</tr>
|
||||
</table><br />
|
||||
|
||||
<!-- Other controls -->
|
||||
<table border="0">
|
||||
<table border="0" cellpadding="2" cellspacing="1">
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table border="0" align="<?php echo $cell_align_left; ?>">
|
||||
<td class="tblHeaders"> <?php echo $strUseTables; ?>: </td>
|
||||
<td width="20"> </td>
|
||||
<td class="tblHeaders"> <?php echo sprintf($strQueryOnDb, htmlspecialchars($db)); ?> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td rowspan="4" valign="top">
|
||||
<?php echo $strUseTables; ?> :
|
||||
<br />
|
||||
<select name="TableList[]" size="7" multiple="multiple">
|
||||
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
|
||||
<?php
|
||||
foreach ($tbl_names AS $key => $val) {
|
||||
echo ' ';
|
||||
echo '<option value="' . htmlspecialchars($key) . '"' . $val . '>' . htmlspecialchars($key) . '</option>' . "\n";
|
||||
$strTableListOptions = '';
|
||||
$numTableListOptions = 0;
|
||||
foreach($tbl_names AS $key => $val) {
|
||||
$strTableListOptions .= ' ';
|
||||
$strTableListOptions .= '<option value="' . htmlspecialchars($key) . '"' . $val . '>' . htmlspecialchars($key) . '</option>' . "\n";
|
||||
$numTableListOptions++;
|
||||
}
|
||||
?>
|
||||
<select name="TableList[]" size="<?php echo ($numTableListOptions > 30) ? '15' : '7'; ?>" multiple="multiple" id="listTable">
|
||||
<?php echo $strTableListOptions; ?>
|
||||
</select>
|
||||
</td>
|
||||
<td align="<?php echo $cell_align_right; ?>" valign="bottom">
|
||||
<input type="hidden" value="<?php echo htmlspecialchars($db); ?>" name="db" />
|
||||
<input type="hidden" value="<?php echo $z; ?>" name="Columns" />
|
||||
<?php
|
||||
$w--;
|
||||
?>
|
||||
<input type="hidden" value="<?php echo $w; ?>" name="Rows" />
|
||||
<?php echo $strAddDeleteRow; ?> :
|
||||
<select size="1" name="Add_Row">
|
||||
<option value="-3">-3</option>
|
||||
<option value="-2">-2</option>
|
||||
<option value="-1">-1</option>
|
||||
<option value="0" selected="selected">0</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="<?php echo $cell_align_right; ?>" valign="bottom">
|
||||
<?php echo $strAddDeleteColumn; ?> :
|
||||
<select size="1" name="Add_Col">
|
||||
<option value="-3">-3</option>
|
||||
<option value="-2">-2</option>
|
||||
<option value="-1">-1</option>
|
||||
<option value="0" selected="selected">0</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- Generates a query -->
|
||||
<tr align="center" valign="top">
|
||||
<td>
|
||||
<input type="submit" name="modify" value="<?php echo $strUpdateQuery; ?>" />
|
||||
<?php echo PMA_generate_common_hidden_inputs(); ?>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- Executes a query -->
|
||||
<tr align="center" valign="top">
|
||||
<td>
|
||||
<input type="submit" name="submit_sql" value="<?php echo $strRunQuery; ?>" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td>
|
||||
<td> </td>
|
||||
<!-- Displays the current query -->
|
||||
<?php echo sprintf($strQueryOnDb, htmlspecialchars($db)); ?><br />
|
||||
<textarea cols="30" rows="7" name="sql_query" dir="<?php echo $text_dir; ?>">
|
||||
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
|
||||
<textarea cols="30" rows="<?php echo ($numTableListOptions > 30) ? '15' : '7'; ?>" name="sql_query" dir="<?php echo $text_dir; ?>" id="textSqlquery">
|
||||
<?php
|
||||
// 1. SELECT
|
||||
$last_select = 0;
|
||||
@@ -1063,15 +1056,19 @@ if (!empty($qry_orderby)) {
|
||||
echo 'ORDER BY ' . htmlspecialchars($qry_orderby) . "\n";
|
||||
}
|
||||
?>
|
||||
</textarea>
|
||||
</textarea>
|
||||
<input type="hidden" name="encoded_sql_query" value="<?php echo $encoded_qry; ?>" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<tr>
|
||||
<!-- Generates a query -->
|
||||
<td align="right" class="tblHeaders"><input type="submit" name="modify" value="<?php echo $strUpdateQuery; ?>" /></td>
|
||||
<td> </td>
|
||||
<!-- Execute a query -->
|
||||
<td align="right" class="tblHeaders"><input type="submit" name="submit_sql" value="<?php echo $strRunQuery; ?>" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
|
||||
<?php
|
||||
/**
|
||||
* Displays the footer
|
||||
|
@@ -180,15 +180,15 @@ if ($cfg['PropertiesIconic'] == true) {
|
||||
$iconic_spacer = '';
|
||||
}
|
||||
|
||||
$titles['Browse'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" border="0" />';
|
||||
$titles['Search'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" border="0" />';
|
||||
$titles['NoBrowse'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/bd_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" border="0" />';
|
||||
$titles['NoSearch'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/bd_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" border="0" />';
|
||||
$titles['Insert'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" border="0" />';
|
||||
$titles['Properties'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_props.png" alt="' . $strProperties . '" title="' . $strProperties . '" border="0" />';
|
||||
$titles['Drop'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" border="0" />';
|
||||
$titles['Empty'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/b_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" border="0" />';
|
||||
$titles['NoEmpty'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="images/bd_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" border="0" />';
|
||||
$titles['Browse'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" border="0" />';
|
||||
$titles['Search'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" border="0" />';
|
||||
$titles['NoBrowse'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'bd_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" border="0" />';
|
||||
$titles['NoSearch'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'bd_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" border="0" />';
|
||||
$titles['Insert'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" border="0" />';
|
||||
$titles['Properties'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_props.png" alt="' . $strProperties . '" title="' . $strProperties . '" border="0" />';
|
||||
$titles['Drop'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" border="0" />';
|
||||
$titles['Empty'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'b_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" border="0" />';
|
||||
$titles['NoEmpty'] = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' .$pmaThemeImage . 'bd_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" border="0" />';
|
||||
|
||||
if ($propicon == 'both') {
|
||||
$titles['Browse'] .= ' ' . $strBrowse . '</div>';
|
||||
@@ -229,7 +229,7 @@ else {
|
||||
if (is_array($comment)) {
|
||||
?>
|
||||
<!-- DB comment -->
|
||||
<p><i>
|
||||
<p id="dbComment"><i>
|
||||
<?php echo htmlspecialchars(implode(' ', $comment)) . "\n"; ?>
|
||||
</i></p>
|
||||
<?php
|
||||
@@ -244,7 +244,7 @@ else {
|
||||
?>
|
||||
<table cellspacing="0" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td valign="top" bgcolor="#cc0000">
|
||||
<td valign="top">
|
||||
<?php
|
||||
}
|
||||
|
||||
@@ -307,7 +307,7 @@ else {
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td><img src="./images/spacer.png" border="0" width="10" height="1" alt="" /></td>
|
||||
<td><img src="./images/spacer.gif" border="0" width="10" height="1" alt="" /></td>
|
||||
<td valign="top">
|
||||
<?php
|
||||
pma_TableHeader();
|
||||
@@ -563,7 +563,7 @@ else {
|
||||
?>
|
||||
<tr>
|
||||
<td colspan="<?php echo $basecolspan; ?>" valign="bottom">
|
||||
<img src="./images/arrow_<?php echo $text_dir; ?>.png" border="0" width="38" height="22" alt="<?php echo $strWithChecked; ?>" />
|
||||
<img src="<?php echo $pmaThemeImage .'arrow_'.$text_dir.'.png'; ?>" 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>
|
||||
/
|
||||
@@ -575,7 +575,7 @@ else {
|
||||
<?php echo $strCheckOverhead; ?></a>
|
||||
<?php } ?>
|
||||
|
||||
<img src="./images/spacer.png" border="0" width="38" height="1" alt="" />
|
||||
<img src="./images/spacer.gif" border="0" width="38" height="1" alt="" />
|
||||
<select name="submit_mult" dir="ltr" onchange="this.form.submit();">
|
||||
<?php
|
||||
echo "\n";
|
||||
@@ -640,19 +640,19 @@ if ($num_tables > 0) {
|
||||
<table border="0" cellpadding="2" cellspacing="0">
|
||||
<tr><td nowrap="nowrap" colspan="3"><?php
|
||||
echo '<a href="db_printview.php?' . $url_query . '">';
|
||||
if ($cfg['PropertiesIconic']){
|
||||
echo '<img src="./images/b_print.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
if ($cfg['PropertiesIconic']) {
|
||||
echo '<img src="' . $pmaThemeImage . 'b_print.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
}
|
||||
echo $strPrintView . '</a>';
|
||||
?>
|
||||
<?php
|
||||
echo '<a href="./db_datadict.php?' . $url_query . '">';
|
||||
if ($cfg['PropertiesIconic']){
|
||||
echo '<img src="./images/b_tblanalyse.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
if($cfg['PropertiesIconic']){
|
||||
echo '<img src="' . $pmaThemeImage . 'b_tblanalyse.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
}
|
||||
echo $strDataDict . '</a>';
|
||||
?></td></tr>
|
||||
<tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr></table>
|
||||
<tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr></table>
|
||||
<?php
|
||||
} // end if
|
||||
?>
|
||||
@@ -662,7 +662,7 @@ if ($num_tables > 0) {
|
||||
<tr>
|
||||
<td class="tblHeaders" colspan="3" nowrap="nowrap"><?php
|
||||
echo PMA_generate_common_hidden_inputs($db);
|
||||
if ($cfg['PropertiesIconic']){ echo '<img src="images/b_newtbl.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; }
|
||||
if($cfg['PropertiesIconic']){ echo '<img src="' . $pmaThemeImage . 'b_newtbl.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />'; }
|
||||
// if you want navigation:
|
||||
$strDBLink = '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url() . '&db=' . urlencode($GLOBALS['db']) . '">'
|
||||
. htmlspecialchars($GLOBALS['db']) . '</a>';
|
||||
@@ -694,12 +694,12 @@ echo ' ' . ' <input type="submit" value="' . $strGo . '" />' .
|
||||
if ($cfgRelation['commwork']) {
|
||||
?>
|
||||
<!-- Alter/Enter db-comment -->
|
||||
<tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr>
|
||||
<tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>
|
||||
|
||||
<tr>
|
||||
<td colspan="3" class="tblHeaders"><?php
|
||||
if ($cfg['PropertiesIconic']){
|
||||
echo '<img src="images/b_comment.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
if ($cfg['PropertiesIconic']) {
|
||||
echo '<img src="' . $pmaThemeImage . 'b_comment.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
}
|
||||
echo $strDBComment;
|
||||
?></td></tr>
|
||||
@@ -716,10 +716,10 @@ if ($cfgRelation['commwork']) {
|
||||
}
|
||||
?>
|
||||
<!-- Rename database -->
|
||||
<tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr>
|
||||
<tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>
|
||||
<tr><td colspan="3" class="tblHeaders"><?php
|
||||
if ($cfg['PropertiesIconic']){
|
||||
echo '<img src="images/b_edit.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
if ($cfg['PropertiesIconic']) {
|
||||
echo '<img src="' . $pmaThemeImage . 'b_edit.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
}
|
||||
echo $strDBRename.': ';
|
||||
?></td></tr>
|
||||
@@ -738,10 +738,10 @@ if (PMA_MYSQL_INT_VERSION >= 40101) {
|
||||
// MySQL supports setting default charsets / collations for databases since
|
||||
// version 4.1.1.
|
||||
echo ' <!-- Change database charset -->' . "\n"
|
||||
. ' <tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr>' . "\n"
|
||||
. ' <tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>' . "\n"
|
||||
. ' <tr><td colspan="3" class="tblHeaders">';
|
||||
if ($cfg['PropertiesIconic']){
|
||||
echo '<img src="./images/s_asci.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
if ($cfg['PropertiesIconic']) {
|
||||
echo '<img src="' . $pmaThemeImage . 's_asci.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
}
|
||||
echo ' <label for="select_db_collation">' . $strCollation . '</label>: ' . "\n"
|
||||
. ' </td></tr>' . "\n"
|
||||
@@ -781,14 +781,14 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) {
|
||||
<!-- Work on PDF Pages -->
|
||||
<tr><td colspan="3" class="tblHeaders">
|
||||
<?php
|
||||
if ($cfg['PropertiesIconic']){
|
||||
echo '<img src="./images/b_pdfdoc.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
if ($cfg['PropertiesIconic']) {
|
||||
echo '<img src="' . $pmaThemeImage . 'b_pdfdoc.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
}
|
||||
?>PDF</td></tr><tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
|
||||
<td colspan="3"><?php
|
||||
echo '<a href="pdf_pages.php?' . $takeaway . '">';
|
||||
if ($cfg['PropertiesIconic']){
|
||||
echo '<img src="./images/b_edit.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
if ($cfg['PropertiesIconic']) {
|
||||
echo '<img src="' . $pmaThemeImage . 'b_edit.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
}
|
||||
echo ''. $strEditPDFPages . '</a>';
|
||||
?></td></tr>
|
||||
@@ -805,13 +805,13 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) {
|
||||
?>
|
||||
<form method="post" action="pdf_schema.php">
|
||||
<tr bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><td colspan="3">
|
||||
<?php
|
||||
<?php
|
||||
echo PMA_generate_common_hidden_inputs($db);
|
||||
if ($cfg['PropertiesIconic']){
|
||||
echo '<img src="./images/b_view.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
if ($cfg['PropertiesIconic']) {
|
||||
echo '<img src="' . $pmaThemeImage . 'b_view.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
}
|
||||
?>
|
||||
<?php echo $strDisplayPDF; ?>: </td></tr>
|
||||
echo $strDisplayPDF;
|
||||
?>: </td></tr>
|
||||
<tr bgcolor="<?php echo $cfg['BgcolorTwo']; ?>"><td width="20"> </td><td colspan="2">
|
||||
<?php echo $strPageNumber; ?>
|
||||
<select name="pdf_page_number">
|
||||
@@ -870,7 +870,7 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) {
|
||||
<td width="20"> </td><td colspan="3" align="right">
|
||||
<input type="submit" value="<?php echo $strGo; ?>" /></td>
|
||||
</form></tr>
|
||||
<tr><td colspan="3"><img src="images/spacer.png" width="1" height="1" border="0" alt="" /></td></tr>
|
||||
<tr><td colspan="3"><img src="images/spacer.gif" width="1" height="1" border="0" alt="" /></td></tr>
|
||||
<?php
|
||||
} // end if
|
||||
?>
|
||||
@@ -886,8 +886,8 @@ if ($num_tables > 0
|
||||
<!-- import docSQL files -->
|
||||
<tr bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><td colspan="3"><?php
|
||||
echo '<a href="db_details_importdocsql.php?' . $takeaway . '">';
|
||||
if ($cfg['PropertiesIconic']){
|
||||
echo '<img src="./images/b_docsql.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
if ($cfg['PropertiesIconic']) {
|
||||
echo '<img src="' . $pmaThemeImage . 'b_docsql.png" border="0" width="16" height="16" hspace="2" align="absmiddle" />';
|
||||
}
|
||||
echo $strImportDocSQL . '</a>';
|
||||
?>
|
||||
|
@@ -262,31 +262,28 @@ if (empty($search_option)) {
|
||||
}
|
||||
?>
|
||||
<!-- Display search form -->
|
||||
<p align="center">
|
||||
<b><?php echo $strSearchFormTitle; ?></b>
|
||||
</p>
|
||||
|
||||
<a name="db_search"></a>
|
||||
<form method="post" action="db_search.php" name="db_search">
|
||||
<?php echo PMA_generate_common_hidden_inputs($db); ?>
|
||||
|
||||
<table>
|
||||
<table border="0" cellpadding="3" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<?php echo $strSearchNeedle; ?>
|
||||
<th class="tblHeaders" align="center" colspan="2"><?php echo $strSearchFormTitle; ?></th>
|
||||
</tr>
|
||||
<tr><td colspan="2"></td></tr>
|
||||
<tr>
|
||||
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
|
||||
<?php echo $strSearchNeedle; ?> <br />
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" name="search_str" size="30" value="<?php echo $searched; ?>" />
|
||||
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
|
||||
<input type="text" name="search_str" size="60" value="<?php echo $searched; ?>" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<tr><td colspan="2"></td></tr><tr>
|
||||
<td align="right" valign="top" bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
|
||||
<?php echo $strSearchType; ?>
|
||||
</td>
|
||||
<td>
|
||||
<td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
|
||||
<input type="radio" id="search_option_1" name="search_option" value="1"<?php if ($search_option == 1) echo ' checked="checked"'; ?> />
|
||||
<label for="search_option_1"><?php echo $strSearchOption1; ?></label> *<br />
|
||||
<input type="radio" id="search_option_2" name="search_option" value="2"<?php if ($search_option == 2) echo ' checked="checked"'; ?> />
|
||||
@@ -294,20 +291,19 @@ if (empty($search_option)) {
|
||||
<input type="radio" id="search_option_3" name="search_option" value="3"<?php if ($search_option == 3) echo ' checked="checked"'; ?> />
|
||||
<label for="search_option_3"><?php echo $strSearchOption3; ?></label><br />
|
||||
<input type="radio" id="search_option_4" name="search_option" value="4"<?php if ($search_option == 4) echo ' checked="checked"'; ?> />
|
||||
<label for="search_option_4"><?php echo $strSearchOption4 . '</label> ' . PMA_showMySQLDocu('Regexp', 'Regexp'); ?><br />
|
||||
<label for="search_option_4"><?php echo $strSearchOption4; ?></label><?php echo PMA_showMySQLDocu('Regexp', 'Regexp'); ?><br />
|
||||
<br />
|
||||
* <?php echo $strSplitWordsWithSpace . "\n"; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td colspan="2"></td></tr>
|
||||
<tr>
|
||||
<td colspan="2"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<td align="right" valign="top" bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
|
||||
<?php echo $strSearchInTables; ?>
|
||||
</td>
|
||||
<td>
|
||||
<td rowspan="2" bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
|
||||
<?php
|
||||
$strDoSelectAll=' ';
|
||||
if ($num_tables > 1) {
|
||||
$i = 0;
|
||||
|
||||
@@ -329,12 +325,11 @@ if ($num_tables > 1) {
|
||||
$i++;
|
||||
} // end while
|
||||
echo ' </select>' . "\n";
|
||||
?>
|
||||
<br />
|
||||
<a href="db_search.php?<?php echo $url_query; ?>&selectall=1#db_search" onclick="setSelectOptions('db_search', 'table_select[]', true); return false;"><?php echo $strSelectAll; ?></a>
|
||||
/
|
||||
<a href="db_search.php?<?php echo $url_query; ?>&unselectall=1#db_search" onclick="setSelectOptions('db_search', 'table_select[]', false); return false;"><?php echo $strUnselectAll; ?></a>
|
||||
<?php
|
||||
$strDoSelectAll = '<a href="db_search.php?' . $url_query . '&selectall=1#db_search"'
|
||||
. ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', true); return false;">' . $strSelectAll . '</a>'
|
||||
. ' / '
|
||||
. '<a href="db_search.php?' . $url_query . '&unselectall=1#db_search"'
|
||||
. ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', false); return false;">' . $strUnselectAll . '</a>';
|
||||
}
|
||||
else {
|
||||
echo "\n";
|
||||
@@ -345,13 +340,10 @@ else {
|
||||
echo"\n";
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td colspan="2"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input type="submit" name="submit_search" value="<?php echo $strGo; ?>" /></td>
|
||||
</tr><tr><td align="right" valign="bottom" bgcolor="<?php echo $cfg['BgcolorOne']; ?>"><?php echo $strDoSelectAll; ?></td></tr>
|
||||
<tr><td colspan="2"></td>
|
||||
</tr><tr>
|
||||
<td colspan="2" align="right" class="tblHeaders"><input type="submit" name="submit_search" value="<?php echo $strGo; ?>" id="buttonGo" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
31
export.php
31
export.php
@@ -306,8 +306,10 @@ if (!$save_on_server) {
|
||||
require_once('./header.inc.php');
|
||||
$cfg['Server'] = $backup_cfgServer;
|
||||
unset($backup_cfgServer);
|
||||
echo '<div align="' . $cell_align_left . '">' . "\n";
|
||||
echo ' <pre>' . "\n";
|
||||
echo "\n" . '<div align="' . $cell_align_left . '">' . "\n";
|
||||
//echo ' <pre>' . "\n";
|
||||
echo ' <form name="nofunction">' . "\n"
|
||||
. ' <textarea name="sqldump" cols="50" rows="30" onclick="this.select();" id="textSQLDUMP" wrap="OFF">' . "\n";
|
||||
} // end download
|
||||
}
|
||||
|
||||
@@ -544,9 +546,32 @@ else {
|
||||
/**
|
||||
* Close the html tags and add the footers in dump is displayed on screen
|
||||
*/
|
||||
echo ' </pre>' . "\n";
|
||||
//echo ' </pre>' . "\n";
|
||||
echo ' </textarea>' . "\n"
|
||||
. ' </form>' . "\n";
|
||||
echo '</div>' . "\n";
|
||||
echo "\n";
|
||||
?><script language="JavaScript" type="text/javascript">
|
||||
<!--
|
||||
var bodyWidth=null; var bodyHeight=null;
|
||||
if (document.getElementById('textSQLDUMP')) {
|
||||
bodyWidth = self.innerWidth;
|
||||
bodyHeight = self.innerHeight;
|
||||
if(!bodyWidth && !bodyHeight){
|
||||
if (document.compatMode && document.compatMode == "BackCompat") {
|
||||
bodyWidth = document.body.clientWidth;
|
||||
bodyHeight = document.body.clientHeight;
|
||||
} else if (document.compatMode && document.compatMode == "CSS1Compat") {
|
||||
bodyWidth = document.documentElement.clientWidth;
|
||||
bodyHeight = document.documentElement.clientHeight;
|
||||
}
|
||||
}
|
||||
document.getElementById('textSQLDUMP').style.width=(bodyWidth-50) + 'px';
|
||||
document.getElementById('textSQLDUMP').style.height=(bodyHeight-100) + 'px';
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<?php
|
||||
require_once('./footer.inc.php');
|
||||
} // end if
|
||||
?>
|
||||
|
@@ -41,7 +41,7 @@ if (empty($GLOBALS['is_header_sent'])) {
|
||||
*/
|
||||
$title = '';
|
||||
if ($cfg['ShowHttpHostTitle']) {
|
||||
$title .= (empty($cfg['SetHttpHostTitle']) ? $GLOBALS['HTTP_HOST'] : $cfg['SetHttpHostTitle']) . ' >> ';
|
||||
$title .= (empty($GLOBALS['cfg']['SetHttpHostTitle']) ? $GLOBALS['HTTP_HOST'] : $GLOBALS['cfg']['SetHttpHostTitle']) . ' >> ';
|
||||
}
|
||||
if (!empty($GLOBALS['cfg']['Server']) && isset($GLOBALS['cfg']['Server']['host'])) {
|
||||
$title.=str_replace('\'', '\\\'', $GLOBALS['cfg']['Server']['host']);
|
||||
@@ -140,7 +140,6 @@ if (empty($GLOBALS['is_header_sent'])) {
|
||||
}
|
||||
?>
|
||||
<body bgcolor="<?php echo $GLOBALS['cfg']['RightBgColor'] . '"' . $bkg_img; ?>>
|
||||
|
||||
<?php
|
||||
include('./config.header.inc.php');
|
||||
|
||||
@@ -151,6 +150,11 @@ if (empty($GLOBALS['is_header_sent'])) {
|
||||
/**
|
||||
* Display heading if needed. Design can be set in css file.
|
||||
*/
|
||||
/*
|
||||
// InternetExplorer have problems to show content with style called 'content:'
|
||||
// and IE swaps images, of mouse over an icon
|
||||
// some other Browsers have Problem with the div class="spacer"
|
||||
// the show of icons is now based on param 'MainPageIconic'
|
||||
if (PMA_DISPLAY_HEADING) {
|
||||
echo "<h1>\n\n";
|
||||
$header_url_qry = '?' . PMA_generate_common_url();
|
||||
@@ -181,8 +185,52 @@ if (empty($GLOBALS['is_header_sent'])) {
|
||||
}
|
||||
echo '</h1>';
|
||||
}
|
||||
echo "\n" . '<div class="spacer"></div>';
|
||||
*/
|
||||
if (PMA_DISPLAY_HEADING) {
|
||||
echo '<table border="0" cellpadding="0" cellspacing="0">' . "\n"
|
||||
. ' <tr>' . "\n";
|
||||
$header_url_qry = '?' . PMA_generate_common_url();
|
||||
$server_info = (!empty($cfg['Server']['verbose'])
|
||||
? $cfg['Server']['verbose']
|
||||
: $server_info = $cfg['Server']['host'] . (empty($cfg['Server']['port'])
|
||||
? ''
|
||||
: ':' . $cfg['Server']['port']
|
||||
)
|
||||
);
|
||||
echo ' '
|
||||
. '<td class="serverinfo">' . $GLOBALS['strServer'] . ':'
|
||||
. '<a href="' . $GLOBALS['cfg']['DefaultTabServer'] . '?' . PMA_generate_common_url() . '">';
|
||||
if ($GLOBALS['cfg']['MainPageIconic']) {
|
||||
echo '<img src="' . $GLOBALS['pmaThemeImage'] . 's_host.png" width="16" height="16" border="0" alt="' . htmlspecialchars($server_info) . '" />';
|
||||
}
|
||||
echo htmlspecialchars($server_info) . '</a>' . "\n"
|
||||
. '</td>' . "\n\n";
|
||||
|
||||
if (!empty($GLOBALS['db'])) {
|
||||
echo ' '
|
||||
. '<td class="serverinfo"><div></div></td>' . "\n" . ' '
|
||||
. '<td class="serverinfo">' . $GLOBALS['strDatabase'] . ':'
|
||||
. '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url($GLOBALS['db']) . '">';
|
||||
if ($GLOBALS['cfg']['MainPageIconic']) {
|
||||
echo '<img src="' . $GLOBALS['pmaThemeImage'] . 's_db.png" width="16" height="16" border="0" alt="' . htmlspecialchars($GLOBALS['db']) . '" />';
|
||||
}
|
||||
echo htmlspecialchars($GLOBALS['db']) . '</a>' . "\n"
|
||||
. '</td>' . "\n\n";
|
||||
|
||||
if (!empty($GLOBALS['table'])) {
|
||||
echo ' '
|
||||
. '<td class="serverinfo"><div></div></td>' . "\n" . ' '
|
||||
. '<td class="serverinfo">' . $GLOBALS['strTable'] . ':'
|
||||
. '<a href="' . $GLOBALS['cfg']['DefaultTabTable'] . '?' . PMA_generate_common_url($GLOBALS['db'], $GLOBALS['table']) . '">';
|
||||
if ($GLOBALS['cfg']['MainPageIconic']) {
|
||||
echo '<img src="' . $GLOBALS['pmaThemeImage'] . 's_tbl.png" width="16" height="16" border="0" alt="' . htmlspecialchars($GLOBALS['table']) . '" />';
|
||||
}
|
||||
echo htmlspecialchars($GLOBALS['table']) . '</a>' . "\n"
|
||||
. '</td>' . "\n\n";
|
||||
}
|
||||
}
|
||||
echo ' </tr>' . "\n" . '</table>';
|
||||
}
|
||||
/**
|
||||
* Sets a variable to remember headers have been sent
|
||||
*/
|
||||
|
36
index.php
36
index.php
@@ -8,7 +8,10 @@
|
||||
*/
|
||||
require_once('./libraries/grab_globals.lib.php');
|
||||
require_once('./libraries/common.lib.php');
|
||||
|
||||
/**
|
||||
* Includes the ThemeManager if it hasn't been included yet
|
||||
*/
|
||||
require_once('./libraries/select_theme.lib.php');
|
||||
// Gets the default font sizes
|
||||
PMA_setFontSizes();
|
||||
|
||||
@@ -25,8 +28,6 @@ if (empty($HTTP_HOST)) {
|
||||
$HTTP_HOST = '';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Defines the frameset
|
||||
*/
|
||||
@@ -38,7 +39,6 @@ if (isset($lightm_db)) {
|
||||
unset($lightm_db);
|
||||
}
|
||||
$url_query = PMA_generate_common_url(isset($db) ? $db : '');
|
||||
|
||||
header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
|
||||
|
||||
require_once('./libraries/relation.lib.php');
|
||||
@@ -61,17 +61,33 @@ $phpmain_hash_js = time();
|
||||
</head>
|
||||
|
||||
<?php
|
||||
$query_frame_height = 60;
|
||||
if ($cfg['LeftDisplayServers'] && !$cfg['LeftDisplayServersList']) {
|
||||
$query_frame_height = $query_frame_height + 40;
|
||||
}
|
||||
if ($server > 0) {
|
||||
PMA_availableDatabases(); // this function is defined in "common.lib.php"
|
||||
} else {
|
||||
$num_dbs = 0;
|
||||
}
|
||||
if ($num_dbs > 1) {
|
||||
if ($cfg['LeftFrameLight']) {
|
||||
$query_frame_height = $query_frame_height + 40;
|
||||
}
|
||||
}
|
||||
if ($cfg['LeftDisplayLogo']) {
|
||||
$query_frame_height = $query_frame_height + 50;
|
||||
}
|
||||
if ($cfg['QueryFrame']) {
|
||||
|
||||
if ($cfg['QueryFrameJS']) {
|
||||
echo '<script type="text/javascript">' . "\n";
|
||||
echo '<!--' . "\n";
|
||||
echo ' document.writeln(\'<frameset cols="' . $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0">\');' . "\n";
|
||||
echo ' document.writeln(\' <frameset rows="*, 50" framespacing="0" frameborder="0" border="0">\');' . "\n";
|
||||
echo ' document.writeln(\' <frame src="left.php?' . $url_query . '&hash=' . $phpmain_hash . $phpmain_hash_js . '" name="nav" frameborder="0" />\');' . "\n";
|
||||
echo ' document.writeln(\' <frameset rows="' . $query_frame_height . ', *" framespacing="0" frameborder="0" border="0">\');' . "\n";
|
||||
echo ' document.writeln(\' <frame src="queryframe.php?' . $url_query . '&hash=' . $phpmain_hash . $phpmain_hash_js . '" name="queryframe" frameborder="0" scrolling="no" />\');' . "\n";
|
||||
echo ' document.writeln(\' <frame src="left.php?' . $url_query . '&hash=' . $phpmain_hash . $phpmain_hash_js . '" name="nav" frameborder="0" />\');' . "\n";
|
||||
echo ' document.writeln(\' </frameset>\');' . "\n";
|
||||
echo ' document.writeln(\' <frame src="' . (empty($db) ? $cfg['DefaultTabServer'] : $cfg['DefaultTabDatabase']) . '?' . $url_query . '" name="phpmain' . $phpmain_hash . $phpmain_hash_js . '" border="0" frameborder="0" />\');' . "\n";
|
||||
echo ' document.writeln(\' <frame src="' . (empty($db) ? $cfg['DefaultTabServer'] : $cfg['DefaultTabDatabase']) . '?' . $url_query . '" name="phpmain' . $phpmain_hash . $phpmain_hash_js . '" border="0" frameborder="0" style="border-left: 1px solid #000000;" />\');' . "\n";
|
||||
echo ' document.writeln(\' <noframes>\');' . "\n";
|
||||
echo ' document.writeln(\' <body bgcolor="#FFFFFF">\');' . "\n";
|
||||
echo ' document.writeln(\' <p>' . str_replace("'", "\'", $strNoFrames) . '</p>\');' . "\n";
|
||||
@@ -85,9 +101,9 @@ if ($cfg['QueryFrame']) {
|
||||
}
|
||||
|
||||
echo '<frameset cols="' . $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0">' . "\n";
|
||||
echo ' <frameset rows="*, 50" framespacing="0" frameborder="0" border="0">' . "\n";
|
||||
echo ' <frame src="left.php?' . $url_query . '&hash=' . $phpmain_hash . '" name="nav" frameborder="0" />' . "\n";
|
||||
echo ' <frameset rows="' . $query_frame_height . ', *" framespacing="0" frameborder="0" border="0">' . "\n";
|
||||
echo ' <frame src="queryframe.php?' . $url_query . '&hash=' . $phpmain_hash . '" name="queryframe" frameborder="0" scrolling="no" />' . "\n";
|
||||
echo ' <frame src="left.php?' . $url_query . '&hash=' . $phpmain_hash . '" name="nav" frameborder="0" />' . "\n";
|
||||
echo ' </frameset>' . "\n";
|
||||
echo ' <frame src="' . (empty($db) ? $cfg['DefaultTabServer'] : $cfg['DefaultTabDatabase']) . '?' . $url_query . '" name="phpmain' . $phpmain_hash . '" frameborder="0" />' . "\n";
|
||||
|
||||
|
@@ -758,4 +758,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -759,4 +759,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -747,4 +747,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -748,4 +748,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -757,4 +757,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -772,4 +772,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -773,4 +773,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -755,4 +755,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -755,4 +755,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -743,4 +743,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -749,4 +749,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -749,4 +749,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -771,4 +771,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -772,4 +772,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -771,4 +771,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -749,4 +749,7 @@ $strZeroRemovesTheLimit = 'Pozn
|
||||
$strZip = '"zazipov<6F>no"';
|
||||
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -750,4 +750,7 @@ $strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu)
|
||||
$strZip = '"zazipováno"';
|
||||
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -749,4 +749,7 @@ $strZeroRemovesTheLimit = 'Pozn
|
||||
$strZip = '"zazipov<6F>no"';
|
||||
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -745,4 +745,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -746,4 +746,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -594,6 +594,7 @@ $strSelectAll = 'Select All';
|
||||
$strSelectFields = 'Select fields (at least one):';
|
||||
$strSelectNumRows = 'in query';
|
||||
$strSelectTables = 'Select Tables';
|
||||
$strSelectTheme = 'please select...';
|
||||
$strSend = 'Save as file';
|
||||
$strSent = 'Sent';
|
||||
$strServer = 'Server';
|
||||
@@ -659,12 +660,14 @@ $strTableOptions = 'Table options';
|
||||
$strTableStructure = 'Table structure for table';
|
||||
$strTableType = 'Table type';
|
||||
$strTables = '%s table(s)';
|
||||
$strTakeIt = 'take it';
|
||||
$strTblPrivileges = 'Table-specific privileges';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable ';
|
||||
$strThai = 'Thai';
|
||||
$strTheContent = 'The content of your file has been inserted.';
|
||||
$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.';
|
||||
$strTheTerminator = 'The terminator of the fields.';
|
||||
$strTheme = 'Theme / Style';
|
||||
$strThisHost = 'This Host';
|
||||
$strThisNotDirectory = 'This was not a directory';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.';
|
||||
|
@@ -595,6 +595,7 @@ $strSelectAll = 'Select All';
|
||||
$strSelectFields = 'Select fields (at least one):';
|
||||
$strSelectNumRows = 'in query';
|
||||
$strSelectTables = 'Select Tables';
|
||||
$strSelectTheme = 'please select...';
|
||||
$strSend = 'Save as file';
|
||||
$strSent = 'Sent';
|
||||
$strServer = 'Server';
|
||||
@@ -660,12 +661,14 @@ $strTableOptions = 'Table options';
|
||||
$strTableStructure = 'Table structure for table';
|
||||
$strTableType = 'Table type';
|
||||
$strTables = '%s table(s)';
|
||||
$strTakeIt = 'take it';
|
||||
$strTblPrivileges = 'Table-specific privileges';
|
||||
$strTextAreaLength = ' Because of its length,<br /> this field might not be editable ';
|
||||
$strThai = 'Thai';
|
||||
$strTheContent = 'The content of your file has been inserted.';
|
||||
$strTheContents = 'The contents of the file replaces the contents of the selected table for rows with identical primary or unique key.';
|
||||
$strTheTerminator = 'The terminator of the fields.';
|
||||
$strTheme = 'Theme / Style';
|
||||
$strThisHost = 'This Host';
|
||||
$strThisNotDirectory = 'This was not a directory';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s was successfully killed.';
|
||||
|
@@ -743,4 +743,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -768,4 +768,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -769,4 +769,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -595,6 +595,7 @@ $strSelectAll = 'Tout s
|
||||
$strSelectFields = 'Choisir les champs <20> afficher (au moins un)';
|
||||
$strSelectNumRows = 'dans la requ<71>te';
|
||||
$strSelectTables = 'Choisissez les tables';
|
||||
$strSelectTheme = 'veuillez choisir...';
|
||||
$strSend = 'Transmettre';
|
||||
$strSent = 'Envoy<6F>';
|
||||
$strServer = 'Serveur';
|
||||
@@ -660,12 +661,14 @@ $strTableOptions = '<b>Options</b> pour cette table';
|
||||
$strTableStructure = 'Structure de la table';
|
||||
$strTableType = '<b>Type</b> de la table';
|
||||
$strTables = '%s table(s)';
|
||||
$strTakeIt = 'utiliser celui-ci';
|
||||
$strTblPrivileges = 'Privil<69>ges sp<73>cifiques <20> une table';
|
||||
$strTextAreaLength = 'Il est possible que ce champ<br />ne soit pas <20>ditable<br />en raison de sa longueur';
|
||||
$strThai = 'tha<68>';
|
||||
$strTheContent = 'Le contenu de votre fichier a <20>t<EFBFBD> ins<6E>r<EFBFBD>.';
|
||||
$strTheContents = 'Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de cl<63> primaire ou unique identique.';
|
||||
$strTheTerminator = 'Le caract<63>re qui s<>pare chacun des champs.';
|
||||
$strTheme = 'Th<54>me / Style';
|
||||
$strThisHost = 'Ce serveur';
|
||||
$strThisNotDirectory = 'Ceci n\'est pas un r<>pertoire';
|
||||
$strThreadSuccessfullyKilled = 'Le processus %s a <20>t<EFBFBD> <20>limin<69>.';
|
||||
|
@@ -596,6 +596,7 @@ $strSelectAll = 'Tout sélectionner';
|
||||
$strSelectFields = 'Choisir les champs à afficher (au moins un)';
|
||||
$strSelectNumRows = 'dans la requête';
|
||||
$strSelectTables = 'Choisissez les tables';
|
||||
$strSelectTheme = 'veuillez choisir...';
|
||||
$strSend = 'Transmettre';
|
||||
$strSent = 'Envoyé';
|
||||
$strServer = 'Serveur';
|
||||
@@ -661,12 +662,14 @@ $strTableOptions = '<b>Options</b> pour cette table';
|
||||
$strTableStructure = 'Structure de la table';
|
||||
$strTableType = '<b>Type</b> de la table';
|
||||
$strTables = '%s table(s)';
|
||||
$strTakeIt = 'utiliser celui-ci';
|
||||
$strTblPrivileges = 'Privilèges spécifiques à une table';
|
||||
$strTextAreaLength = 'Il est possible que ce champ<br />ne soit pas éditable<br />en raison de sa longueur';
|
||||
$strThai = 'thaï';
|
||||
$strTheContent = 'Le contenu de votre fichier a été inséré.';
|
||||
$strTheContents = 'Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de clé primaire ou unique identique.';
|
||||
$strTheTerminator = 'Le caractère qui sépare chacun des champs.';
|
||||
$strTheme = 'Thème / Style';
|
||||
$strThisHost = 'Ce serveur';
|
||||
$strThisNotDirectory = 'Ceci n\'est pas un répertoire';
|
||||
$strThreadSuccessfullyKilled = 'Le processus %s a été éliminé.';
|
||||
|
@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -772,4 +772,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strZip = 'Zip-komprimiert';
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -752,4 +752,7 @@ $strZip = 'Zip-komprimiert';
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -753,4 +753,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -768,4 +768,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -776,4 +776,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -757,4 +757,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -743,4 +743,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -748,4 +748,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -749,4 +749,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -756,4 +756,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -757,4 +757,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -766,4 +766,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -767,4 +767,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -749,4 +749,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -748,4 +748,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -743,4 +743,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -767,4 +767,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -768,4 +768,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -750,4 +750,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -774,4 +774,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -773,4 +773,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -763,4 +763,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -764,4 +764,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -744,4 +744,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -745,4 +745,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -752,4 +752,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -751,4 +751,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -754,4 +754,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -753,4 +753,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -754,4 +754,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -753,4 +753,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -745,4 +745,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -746,4 +746,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
@@ -745,4 +745,7 @@ $strSpanish = 'Spanish'; //to translate
|
||||
$strStrucNativeExcel = 'Native MS Excel data'; //to translate
|
||||
$strDisableForeignChecks = 'Disable foreign key checks'; //to translate
|
||||
$strServerNotResponding = 'The server is not responding'; //to translate
|
||||
$strSelectTheme = 'please select...'; //to translate
|
||||
$strTheme = 'Theme / Style'; //to translate
|
||||
$strTakeIt = 'take it'; //to translate
|
||||
?>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user