+ *
+ *
$tmp) {
+ PMA_removeCookie($cookie_name);
+ }
+ $_COOKIE = array();
+ PMA_setCookie('pmaCookieVer', $pma_cookie_version);
+}
+
+/**
+ * include deprecated grab_globals only if required
+ */
+if (empty($__redirect) && !defined('PMA_NO_VARIABLES_IMPORT')) {
+ require './libraries/grab_globals.lib.php';
+}
+
+/**
+ * include session handling after the globals, to prevent overwriting
+ */
+require_once './libraries/session.inc.php';
+
+/**
+ * init some variables LABEL_variables_init
+ */
+
+/**
+ * holds errors
+ * @global array $GLOBALS['PMA_errors']
+ */
+$GLOBALS['PMA_errors'] = array();
+
+/**
+ * holds params to be passed to next page
+ * @global array $GLOBALS['url_params']
+ */
+$GLOBALS['url_params'] = array();
+
+/**
+ * the whitelist for $GLOBALS['goto']
+ * @global array $goto_whitelist
+ */
+$goto_whitelist = array(
+ //'browse_foreigners.php',
+ //'calendar.php',
+ //'changelog.php',
+ //'chk_rel.php',
+ 'db_create.php',
+ 'db_datadict.php',
+ 'db_sql.php',
+ 'db_export.php',
+ 'db_importdocsql.php',
+ 'db_qbe.php',
+ 'db_structure.php',
+ 'db_import.php',
+ 'db_operations.php',
+ 'db_printview.php',
+ 'db_search.php',
+ //'Documentation.html',
+ //'error.php',
+ 'export.php',
+ 'import.php',
+ //'index.php',
+ //'navigation.php',
+ //'license.php',
+ 'main.php',
+ 'pdf_pages.php',
+ 'pdf_schema.php',
+ //'phpinfo.php',
+ 'querywindow.php',
+ //'readme.php',
+ 'server_binlog.php',
+ 'server_collations.php',
+ 'server_databases.php',
+ 'server_engines.php',
+ 'server_export.php',
+ 'server_import.php',
+ 'server_privileges.php',
+ 'server_processlist.php',
+ 'server_sql.php',
+ 'server_status.php',
+ 'server_variables.php',
+ 'sql.php',
+ 'tbl_addfield.php',
+ 'tbl_alter.php',
+ 'tbl_change.php',
+ 'tbl_create.php',
+ 'tbl_import.php',
+ 'tbl_indexes.php',
+ 'tbl_move_copy.php',
+ 'tbl_printview.php',
+ 'tbl_sql.php',
+ 'tbl_export.php',
+ 'tbl_operations.php',
+ 'tbl_structure.php',
+ 'tbl_relation.php',
+ 'tbl_replace.php',
+ 'tbl_row_action.php',
+ 'tbl_select.php',
+ //'themes.php',
+ 'transformation_overview.php',
+ 'transformation_wrapper.php',
+ 'translators.html',
+ 'user_password.php',
+);
+
+/**
+ * check $__redirect against whitelist
+ */
+if (! PMA_checkPageValidity($__redirect, $goto_whitelist)) {
+ $__redirect = null;
+}
+
+/**
+ * holds page that should be displayed
+ * @global string $GLOBALS['goto']
+ */
+$GLOBALS['goto'] = '';
+// Security fix: disallow accessing serious server files via "?goto="
+if (PMA_checkPageValidity($_REQUEST['goto'], $goto_whitelist)) {
+ $GLOBALS['goto'] = $_REQUEST['goto'];
+ $GLOBALS['url_params']['goto'] = $_REQUEST['goto'];
+} else {
+ unset($_REQUEST['goto'], $_GET['goto'], $_POST['goto'], $_COOKIE['goto']);
+}
+
+/**
+ * returning page
+ * @global string $GLOBALS['back']
+ */
+if (PMA_checkPageValidity($_REQUEST['back'], $goto_whitelist)) {
+ $GLOBALS['back'] = $_REQUEST['back'];
+} else {
+ unset($_REQUEST['back'], $_GET['back'], $_POST['back'], $_COOKIE['back']);
+}
+
+/**
+ * Check whether user supplied token is valid, if not remove any possibly
+ * dangerous stuff from request.
+ *
+ * remember that some objects in the session with session_start and __wakeup()
+ * could access this variables before we reach this point
+ * f.e. PMA_Config: fontsize
+ *
+ * @todo variables should be handled by their respective owners (objects)
+ * f.e. lang, server, convcharset, collation_connection in PMA_Config
+ */
+if ((isset($_REQUEST['token']) && !is_string($_REQUEST['token'])) || empty($_REQUEST['token']) || $_SESSION[' PMA_token '] != $_REQUEST['token']) {
+ /**
+ * List of parameters which are allowed from unsafe source
+ */
+ $allow_list = array(
+ 'db', 'table', 'lang', 'server', 'convcharset', 'collation_connection', 'target',
+ /* Session ID */
+ 'phpMyAdmin',
+ /* Cookie preferences */
+ 'pma_lang', 'pma_charset', 'pma_collation_connection',
+ /* Possible login form */
+ 'pma_servername', 'pma_username', 'pma_password',
+ );
+ /**
+ * Require cleanup functions
+ */
+ require_once('./libraries/cleanup.lib.php');
+ /**
+ * Do actual cleanup
+ */
+ PMA_remove_request_vars($allow_list);
+
+}
+
+
+/**
+ * @global string $convcharset
+ * @see select_lang.lib.php
+ */
+if (isset($_REQUEST['convcharset'])) {
+ $convcharset = strip_tags($_REQUEST['convcharset']);
+}
+
+/**
+ * current selected database
+ * @global string $GLOBALS['db']
+ */
+$GLOBALS['db'] = '';
+if (isset($_REQUEST['db']) && is_string($_REQUEST['db'])) {
+ // can we strip tags from this?
+ // only \ and / is not allowed in db names for MySQL
+ $GLOBALS['db'] = $_REQUEST['db'];
+ $GLOBALS['url_params']['db'] = $GLOBALS['db'];
+}
+
+/**
+ * current selected table
+ * @global string $GLOBALS['table']
+ */
+$GLOBALS['table'] = '';
+if (isset($_REQUEST['table']) && is_string($_REQUEST['table'])) {
+ // can we strip tags from this?
+ // only \ and / is not allowed in table names for MySQL
+ $GLOBALS['table'] = $_REQUEST['table'];
+ $GLOBALS['url_params']['table'] = $GLOBALS['table'];
+}
+
+/**
+ * sql query to be executed
+ * @global string $GLOBALS['sql_query']
+ */
+if (isset($_REQUEST['sql_query']) && is_string($_REQUEST['sql_query'])) {
+ $GLOBALS['sql_query'] = $_REQUEST['sql_query'];
+}
+
+//$_REQUEST['set_theme'] // checked later in this file LABEL_theme_setup
+//$_REQUEST['server']; // checked later in this file
+//$_REQUEST['lang']; // checked by LABEL_loading_language_file
+
+
+
+/******************************************************************************/
+/* parsing config file LABEL_parsing_config_file */
+
+if (empty($_SESSION['PMA_Config'])) {
+ /**
+ * We really need this one!
+ */
+ if (! function_exists('preg_replace')) {
+ PMA_fatalError('strCantLoad', 'pcre');
+ }
+
+ /**
+ * @global PMA_Config $_SESSION['PMA_Config']
+ */
+ $_SESSION['PMA_Config'] = new PMA_Config('./config.inc.php');
+
+} elseif (version_compare(phpversion(), '5', 'lt')) {
+ /**
+ * @todo move all __wakeup() functionality into session.inc.php
+ */
+ $_SESSION['PMA_Config']->__wakeup();
+}
+
+if (!defined('PMA_MINIMUM_COMMON')) {
+ $_SESSION['PMA_Config']->checkPmaAbsoluteUri();
+}
+
+/**
+ * BC - enable backward compatibility
+ * exports all config settings into $GLOBALS ($GLOBALS['cfg'])
+ */
+$_SESSION['PMA_Config']->enableBc();
+
+
+/**
+ * check https connection
+ */
+if ($_SESSION['PMA_Config']->get('ForceSSL')
+ && !$_SESSION['PMA_Config']->get('is_https')) {
+ PMA_sendHeaderLocation(
+ preg_replace('/^http/', 'https',
+ $_SESSION['PMA_Config']->get('PmaAbsoluteUri'))
+ . PMA_generate_common_url($_GET));
+ exit;
+}
+
+
+/******************************************************************************/
+/* loading language file LABEL_loading_language_file */
+
+/**
+ * Added messages while developing:
+ */
+if (file_exists('./lang/added_messages.php')) {
+ include './lang/added_messages.php';
+}
+
+/**
+ * Includes the language file if it hasn't been included yet
+ */
+require './libraries/language.lib.php';
+
+
+/**
+ * check for errors occured while loading config
+ * this check is done here after loading lang files to present errors in locale
+ */
+if ($_SESSION['PMA_Config']->error_config_file) {
+ $GLOBALS['PMA_errors'][] = $strConfigFileError
+ . '' . "\n" - . (($cfg['SQP']['fmtType'] == 'none' && $unparsed_sql != '') ? $unparsed_sql : $parsed_sql) . "\n" - . ''; - return $formatted_sql; - } - - $formatted_sql = ''; - - switch ($cfg['SQP']['fmtType']) { - case 'none': - if ($unparsed_sql != '') { - $formatted_sql = "
\n" . PMA_SQP_formatNone(array('raw' => $unparsed_sql)) . "\n"; - } else { - $formatted_sql = PMA_SQP_formatNone($parsed_sql); - } - break; - case 'html': - $formatted_sql = PMA_SQP_formatHtml($parsed_sql, 'color'); - break; - case 'text': - //$formatted_sql = PMA_SQP_formatText($parsed_sql); - $formatted_sql = PMA_SQP_formatHtml($parsed_sql, 'text'); - break; - default: - break; - } // end switch - + // then check for an array + if (!is_array($parsed_sql)) { + // We don't so just return the input directly + // This is intended to be used for when the SQL Parser is turned off + $formatted_sql = '
' . "\n" + . (($cfg['SQP']['fmtType'] == 'none' && $unparsed_sql != '') ? $unparsed_sql : $parsed_sql) . "\n" + . ''; return $formatted_sql; - } // end of the "PMA_formatSql()" function - - - /** - * Displays a link to the official MySQL documentation - * - * @uses $cfg['MySQLManualType'] - * @uses $cfg['MySQLManualBase'] - * @uses $cfg['ReplaceHelpImg'] - * @uses $GLOBALS['mysql_4_1_doc_lang'] - * @uses $GLOBALS['mysql_5_1_doc_lang'] - * @uses $GLOBALS['mysql_5_0_doc_lang'] - * @uses $GLOBALS['strDocu'] - * @uses $GLOBALS['pmaThemeImage'] - * @uses PMA_MYSQL_INT_VERSION - * @uses strtolower() - * @uses str_replace() - * @param string chapter of "HTML, one page per chapter" documentation - * @param string contains name of page/anchor that is being linked - * @param bool whether to use big icon (like in left frame) - * - * @return string the html link - * - * @access public - */ - function PMA_showMySQLDocu($chapter, $link, $big_icon = false) - { - global $cfg; - - if ($cfg['MySQLManualType'] == 'none' || empty($cfg['MySQLManualBase'])) { - return ''; - } - - // Fixup for newly used names: - $chapter = str_replace('_', '-', strtolower($chapter)); - $link = str_replace('_', '-', strtolower($link)); - - switch ($cfg['MySQLManualType']) { - case 'chapters': - if (empty($chapter)) { - $chapter = 'index'; - } - $url = $cfg['MySQLManualBase'] . '/' . $chapter . '.html#' . $link; - break; - case 'big': - $url = $cfg['MySQLManualBase'] . '#' . $link; - break; - case 'searchable': - if (empty($link)) { - $link = 'index'; - } - $url = $cfg['MySQLManualBase'] . '/' . $link . '.html'; - break; - case 'viewable': - default: - if (empty($link)) { - $link = 'index'; - } - $mysql = '5.0'; - $lang = 'en'; - if (defined('PMA_MYSQL_INT_VERSION')) { - if (PMA_MYSQL_INT_VERSION < 50000) { - $mysql = '4.1'; - if (!empty($GLOBALS['mysql_4_1_doc_lang'])) { - $lang = $GLOBALS['mysql_4_1_doc_lang']; - } - } elseif (PMA_MYSQL_INT_VERSION >= 50100) { - $mysql = '5.1'; - if (!empty($GLOBALS['mysql_5_1_doc_lang'])) { - $lang = $GLOBALS['mysql_5_1_doc_lang']; - } - } elseif (PMA_MYSQL_INT_VERSION >= 50000) { - $mysql = '5.0'; - if (!empty($GLOBALS['mysql_5_0_doc_lang'])) { - $lang = $GLOBALS['mysql_5_0_doc_lang']; - } - } - } - $url = $cfg['MySQLManualBase'] . '/' . $mysql . '/' . $lang . '/' . $link . '.html'; - break; - } - - if ($big_icon) { - return '
\n" . PMA_SQP_formatNone(array('raw' => $unparsed_sql)) . "\n"; + } else { + $formatted_sql = PMA_SQP_formatNone($parsed_sql); + } + break; + case 'html': + $formatted_sql = PMA_SQP_formatHtml($parsed_sql, 'color'); + break; + case 'text': + //$formatted_sql = PMA_SQP_formatText($parsed_sql); + $formatted_sql = PMA_SQP_formatHtml($parsed_sql, 'text'); + break; + default: + break; + } // end switch + + return $formatted_sql; +} // end of the "PMA_formatSql()" function + + +/** + * Displays a link to the official MySQL documentation + * + * @uses $cfg['MySQLManualType'] + * @uses $cfg['MySQLManualBase'] + * @uses $cfg['ReplaceHelpImg'] + * @uses $GLOBALS['mysql_4_1_doc_lang'] + * @uses $GLOBALS['mysql_5_1_doc_lang'] + * @uses $GLOBALS['mysql_5_0_doc_lang'] + * @uses $GLOBALS['strDocu'] + * @uses $GLOBALS['pmaThemeImage'] + * @uses PMA_MYSQL_INT_VERSION + * @uses strtolower() + * @uses str_replace() + * @param string chapter of "HTML, one page per chapter" documentation + * @param string contains name of page/anchor that is being linked + * @param bool whether to use big icon (like in left frame) + * + * @return string the html link + * + * @access public + */ +function PMA_showMySQLDocu($chapter, $link, $big_icon = false) +{ + global $cfg; + + if ($cfg['MySQLManualType'] == 'none' || empty($cfg['MySQLManualBase'])) { + return ''; + } + + // Fixup for newly used names: + $chapter = str_replace('_', '-', strtolower($chapter)); + $link = str_replace('_', '-', strtolower($link)); + + switch ($cfg['MySQLManualType']) { + case 'chapters': + if (empty($chapter)) { + $chapter = 'index'; + } + $url = $cfg['MySQLManualBase'] . '/' . $chapter . '.html#' . $link; + break; + case 'big': + $url = $cfg['MySQLManualBase'] . '#' . $link; + break; + case 'searchable': + if (empty($link)) { + $link = 'index'; + } + $url = $cfg['MySQLManualBase'] . '/' . $link . '.html'; + break; + case 'viewable': + default: + if (empty($link)) { + $link = 'index'; + } + $mysql = '5.0'; + $lang = 'en'; + if (defined('PMA_MYSQL_INT_VERSION')) { + if (PMA_MYSQL_INT_VERSION < 50000) { + $mysql = '4.1'; + if (!empty($GLOBALS['mysql_4_1_doc_lang'])) { + $lang = $GLOBALS['mysql_4_1_doc_lang']; + } + } elseif (PMA_MYSQL_INT_VERSION >= 50100) { + $mysql = '5.1'; + if (!empty($GLOBALS['mysql_5_1_doc_lang'])) { + $lang = $GLOBALS['mysql_5_1_doc_lang']; + } + } elseif (PMA_MYSQL_INT_VERSION >= 50000) { + $mysql = '5.0'; + if (!empty($GLOBALS['mysql_5_0_doc_lang'])) { + $lang = $GLOBALS['mysql_5_0_doc_lang']; + } + } + } + $url = $cfg['MySQLManualBase'] . '/' . $mysql . '/' . $lang . '/' . $link . '.html'; + break; + } + + if ($big_icon) { + return '
' . $GLOBALS['strSQLQuery'] . ':' . "\n";
+ if (strstr(strtolower($formatted_sql), 'select')) { // please show me help to the error on select
+ echo PMA_showMySQLDocu('SQL-Syntax', 'SELECT');
+ }
+ if ($is_modify_link && isset($db)) {
+ if (isset($table)) {
+ $doedit_goto = '';
+ } else {
+ $doedit_goto = '';
}
- // ---
- // modified to show me the help on sql errors (Michael Keck)
- echo ' ' . $GLOBALS['strSQLQuery'] . ':' . "\n";
- if (strstr(strtolower($formatted_sql), 'select')) { // please show me help to the error on select
- echo PMA_showMySQLDocu('SQL-Syntax', 'SELECT');
+ if ($GLOBALS['cfg']['PropertiesIconic']) {
+ echo $doedit_goto
+ . ''
+ . '
'
- . '';
- } else {
- echo ' ['
- . $doedit_goto . $GLOBALS['strEdit'] . ''
- . ']' . "\n";
- }
- } // end if
- echo '
' . "\n" - .' ' . $formatted_sql . "\n" - .'
' . "\n"; } // end if + echo ' ' . "\n" + .'' . "\n" + .' ' . $formatted_sql . "\n" + .'
' . "\n"; + } // end if - $tmp_mysql_error = ''; // for saving the original $error_message - if (!empty($error_message)) { - $tmp_mysql_error = strtolower($error_message); // save the original $error_message - $error_message = htmlspecialchars($error_message); - $error_message = preg_replace("@((\015\012)|(\015)|(\012)){3,}@", "\n\n", $error_message); - } - // modified to show me the help on error-returns (Michael Keck) - // (now error-messages-server) - echo '' . "\n" - . ' ' . $GLOBALS['strMySQLSaid'] . '' - . PMA_showMySQLDocu('Error-messages-server', 'Error-messages-server') - . "\n" - . '
' . "\n"; + $tmp_mysql_error = ''; // for saving the original $error_message + if (!empty($error_message)) { + $tmp_mysql_error = strtolower($error_message); // save the original $error_message + $error_message = htmlspecialchars($error_message); + $error_message = preg_replace("@((\015\012)|(\015)|(\012)){3,}@", "\n\n", $error_message); + } + // modified to show me the help on error-returns (Michael Keck) + // (now error-messages-server) + echo '' . "\n" + . ' ' . $GLOBALS['strMySQLSaid'] . '' + . PMA_showMySQLDocu('Error-messages-server', 'Error-messages-server') + . "\n" + . '
' . "\n"; - // The error message will be displayed within a CODE segment. - // To preserve original formatting, but allow wordwrapping, we do a couple of replacements + // The error message will be displayed within a CODE segment. + // To preserve original formatting, but allow wordwrapping, we do a couple of replacements - // Replace all non-single blanks with their HTML-counterpart - $error_message = str_replace(' ', ' ', $error_message); - // Replace TAB-characters with their HTML-counterpart - $error_message = str_replace("\t", ' ', $error_message); - // Replace linebreaks - $error_message = nl2br($error_message); + // Replace all non-single blanks with their HTML-counterpart + $error_message = str_replace(' ', ' ', $error_message); + // Replace TAB-characters with their HTML-counterpart + $error_message = str_replace("\t", ' ', $error_message); + // Replace linebreaks + $error_message = nl2br($error_message); - echo '' . "\n"
- . $error_message . "\n"
- . '
' . "\n"
+ . $error_message . "\n"
+ . '
'; - debug_print_backtrace(); - echo ''; - } - trigger_error('PMA_sendHeaderLocation called when headers are already sent!', E_USER_ERROR); - } - // bug #1523784: IE6 does not like 'Refresh: 0', it - // results in a blank page - // but we need it when coming from the cookie login panel) - if (PMA_IS_IIS && defined('PMA_COMING_FROM_COOKIE_LOGIN')) { - header('Refresh: 0; ' . $uri); - } else { - header('Location: ' . $uri); + $separator = PMA_get_arg_separator(); + header('Location: ' . $uri . $separator . SID); + } + } else { + session_write_close(); + if (headers_sent()) { + if (function_exists('debug_print_backtrace')) { + echo '
'; + debug_print_backtrace(); + echo ''; } + trigger_error('PMA_sendHeaderLocation called when headers are already sent!', E_USER_ERROR); + } + // bug #1523784: IE6 does not like 'Refresh: 0', it + // results in a blank page + // but we need it when coming from the cookie login panel) + if (PMA_IS_IIS && defined('PMA_COMING_FROM_COOKIE_LOGIN')) { + header('Refresh: 0; ' . $uri); + } else { + header('Location: ' . $uri); } } } +} - /** - * returns array with tables of given db with extended infomation and grouped - * - * @uses $cfg['LeftFrameTableSeparator'] - * @uses $cfg['LeftFrameTableLevel'] - * @uses $cfg['ShowTooltipAliasTB'] - * @uses $cfg['NaturalOrder'] - * @uses PMA_backquote() - * @uses count() - * @uses array_merge - * @uses uksort() - * @uses strstr() - * @uses explode() - * @param string $db name of db - * return array (rekursive) grouped table list - */ - function PMA_getTableList($db, $tables = null) - { - $sep = $GLOBALS['cfg']['LeftFrameTableSeparator']; +/** + * returns array with tables of given db with extended infomation and grouped + * + * @uses $cfg['LeftFrameTableSeparator'] + * @uses $cfg['LeftFrameTableLevel'] + * @uses $cfg['ShowTooltipAliasTB'] + * @uses $cfg['NaturalOrder'] + * @uses PMA_backquote() + * @uses count() + * @uses array_merge + * @uses uksort() + * @uses strstr() + * @uses explode() + * @param string $db name of db + * return array (rekursive) grouped table list + */ +function PMA_getTableList($db, $tables = null) +{ + $sep = $GLOBALS['cfg']['LeftFrameTableSeparator']; - if ( null === $tables ) { - $tables = PMA_DBI_get_tables_full($db); - if ($GLOBALS['cfg']['NaturalOrder']) { - uksort($tables, 'strnatcasecmp'); - } + if ( null === $tables ) { + $tables = PMA_DBI_get_tables_full($db); + if ($GLOBALS['cfg']['NaturalOrder']) { + uksort($tables, 'strnatcasecmp'); } - - if (count($tables) < 1) { - return $tables; - } - - $default = array( - 'Name' => '', - 'Rows' => 0, - 'Comment' => '', - 'disp_name' => '', - ); - - $table_groups = array(); - - foreach ($tables as $table_name => $table) { - - // check for correct row count - if (null === $table['Rows']) { - // Do not check exact row count here, - // if row count is invalid possibly the table is defect - // and this would break left frame; - // but we can check row count if this is a view, - // since PMA_Table::countRecords() returns a limited row count - // in this case. - - // set this because PMA_Table::countRecords() can use it - $tbl_is_view = PMA_Table::isView($db, $table['Name']); - - if ($tbl_is_view) { - $table['Rows'] = PMA_Table::countRecords($db, $table['Name'], - $return = true); - } - } - - // in $group we save the reference to the place in $table_groups - // where to store the table info - if ($GLOBALS['cfg']['LeftFrameDBTree'] - && $sep && strstr($table_name, $sep)) - { - $parts = explode($sep, $table_name); - - $group =& $table_groups; - $i = 0; - $group_name_full = ''; - while ($i < count($parts) - 1 - && $i < $GLOBALS['cfg']['LeftFrameTableLevel']) { - $group_name = $parts[$i] . $sep; - $group_name_full .= $group_name; - - if (!isset($group[$group_name])) { - $group[$group_name] = array(); - $group[$group_name]['is' . $sep . 'group'] = true; - $group[$group_name]['tab' . $sep . 'count'] = 1; - $group[$group_name]['tab' . $sep . 'group'] = $group_name_full; - } elseif (!isset($group[$group_name]['is' . $sep . 'group'])) { - $table = $group[$group_name]; - $group[$group_name] = array(); - $group[$group_name][$group_name] = $table; - unset($table); - $group[$group_name]['is' . $sep . 'group'] = true; - $group[$group_name]['tab' . $sep . 'count'] = 1; - $group[$group_name]['tab' . $sep . 'group'] = $group_name_full; - } else { - $group[$group_name]['tab' . $sep . 'count']++; - } - $group =& $group[$group_name]; - $i++; - } - } else { - if (!isset($table_groups[$table_name])) { - $table_groups[$table_name] = array(); - } - $group =& $table_groups; - } - - - if ($GLOBALS['cfg']['ShowTooltipAliasTB'] - && $GLOBALS['cfg']['ShowTooltipAliasTB'] !== 'nested') { - // switch tooltip and name - $table['Comment'] = $table['Name']; - $table['disp_name'] = $table['Comment']; - } else { - $table['disp_name'] = $table['Name']; - } - - $group[$table_name] = array_merge($default, $table); - } - - return $table_groups; } - /* ----------------------- Set of misc functions ----------------------- */ + if (count($tables) < 1) { + return $tables; + } + $default = array( + 'Name' => '', + 'Rows' => 0, + 'Comment' => '', + 'disp_name' => '', + ); - /** - * Adds backquotes on both sides of a database, table or field name. - * and escapes backquotes inside the name with another backquote - * - * example: - *
- * echo PMA_backquote('owner`s db'); // `owner``s db`
- *
- *
- *
- * @uses PMA_backquote()
- * @uses is_array()
- * @uses strlen()
- * @uses str_replace()
- * @param mixed $a_name the database, table or field name to "backquote"
- * or array of it
- * @param boolean $do_it a flag to bypass this function (used by dump
- * functions)
- * @return mixed the "backquoted" database, table or field name if the
- * current MySQL release is >= 3.23.6, the original one
- * else
- * @access public
- */
- function PMA_backquote($a_name, $do_it = true)
- {
- if (! $do_it) {
- return $a_name;
+ $table_groups = array();
+
+ foreach ($tables as $table_name => $table) {
+
+ // check for correct row count
+ if (null === $table['Rows']) {
+ // Do not check exact row count here,
+ // if row count is invalid possibly the table is defect
+ // and this would break left frame;
+ // but we can check row count if this is a view,
+ // since PMA_Table::countRecords() returns a limited row count
+ // in this case.
+
+ // set this because PMA_Table::countRecords() can use it
+ $tbl_is_view = PMA_Table::isView($db, $table['Name']);
+
+ if ($tbl_is_view) {
+ $table['Rows'] = PMA_Table::countRecords($db, $table['Name'],
+ $return = true);
+ }
}
- if (is_array($a_name)) {
- $result = array();
- foreach ($a_name as $key => $val) {
- $result[$key] = PMA_backquote($val);
- }
- return $result;
- }
+ // in $group we save the reference to the place in $table_groups
+ // where to store the table info
+ if ($GLOBALS['cfg']['LeftFrameDBTree']
+ && $sep && strstr($table_name, $sep))
+ {
+ $parts = explode($sep, $table_name);
- // '0' is also empty for php :-(
- if (strlen($a_name) && $a_name !== '*') {
- return '`' . str_replace('`', '``', $a_name) . '`';
+ $group =& $table_groups;
+ $i = 0;
+ $group_name_full = '';
+ while ($i < count($parts) - 1
+ && $i < $GLOBALS['cfg']['LeftFrameTableLevel']) {
+ $group_name = $parts[$i] . $sep;
+ $group_name_full .= $group_name;
+
+ if (!isset($group[$group_name])) {
+ $group[$group_name] = array();
+ $group[$group_name]['is' . $sep . 'group'] = true;
+ $group[$group_name]['tab' . $sep . 'count'] = 1;
+ $group[$group_name]['tab' . $sep . 'group'] = $group_name_full;
+ } elseif (!isset($group[$group_name]['is' . $sep . 'group'])) {
+ $table = $group[$group_name];
+ $group[$group_name] = array();
+ $group[$group_name][$group_name] = $table;
+ unset($table);
+ $group[$group_name]['is' . $sep . 'group'] = true;
+ $group[$group_name]['tab' . $sep . 'count'] = 1;
+ $group[$group_name]['tab' . $sep . 'group'] = $group_name_full;
+ } else {
+ $group[$group_name]['tab' . $sep . 'count']++;
+ }
+ $group =& $group[$group_name];
+ $i++;
+ }
} else {
- return $a_name;
+ if (!isset($table_groups[$table_name])) {
+ $table_groups[$table_name] = array();
+ }
+ $group =& $table_groups;
}
- } // end of the 'PMA_backquote()' function
- /**
- * Defines the
+ * echo PMA_backquote('owner`s db'); // `owner``s db`
+ *
+ *
+ *
+ * @uses PMA_backquote()
+ * @uses is_array()
+ * @uses strlen()
+ * @uses str_replace()
+ * @param mixed $a_name the database, table or field name to "backquote"
+ * or array of it
+ * @param boolean $do_it a flag to bypass this function (used by dump
+ * functions)
+ * @return mixed the "backquoted" database, table or field name if the
+ * current MySQL release is >= 3.23.6, the original one
+ * else
+ * @access public
+ */
+function PMA_backquote($a_name, $do_it = true)
+{
+ if (! $do_it) {
+ return $a_name;
+ }
+
+ if (is_array($a_name)) {
+ $result = array();
+ foreach ($a_name as $key => $val) {
+ $result[$key] = PMA_backquote($val);
+ }
+ return $result;
+ }
+
+ // '0' is also empty for php :-(
+ if (strlen($a_name) && $a_name !== '*') {
+ return '`' . str_replace('`', '``', $a_name) . '`';
+ } else {
+ return $a_name;
+ }
+} // end of the 'PMA_backquote()' function
+
+
+/**
+ * Defines the
+ * echo PMA_formatNumber(123456789, 6); // 123,457 k
+ * echo PMA_formatNumber(-123456789, 4, 2); // -123.46 M
+ * echo PMA_formatNumber(-0.003, 6); // -3 m
+ * echo PMA_formatNumber(0.003, 3, 3); // 0.003
+ * echo PMA_formatNumber(0.00003, 3, 2); // 0.03 m
+ * echo PMA_formatNumber(0, 6); // 0
+ *
+ *
+ * @param double $value the value to format
+ * @param integer $length the max length
+ * @param integer $comma the number of decimals to retain
+ * @param boolean $only_down do not reformat numbers below 1
+ *
+ * @return string the formatted value and its unit
+ *
+ * @access public
+ *
+ * @author staybyte, sebastian mendel
+ * @version 1.1.0 - 2005-10-27
+ */
+function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false)
+{
+ if ($length === 0) {
+ return number_format($value,
+ $comma,
+ $GLOBALS['number_decimal_separator'],
+ $GLOBALS['number_thousands_separator']);
+ }
+
+ // this units needs no translation, ISO
+ $units = array(
+ -8 => 'y',
+ -7 => 'z',
+ -6 => 'a',
+ -5 => 'f',
+ -4 => 'p',
+ -3 => 'n',
+ -2 => 'µ',
+ -1 => 'm',
+ 0 => ' ',
+ 1 => 'k',
+ 2 => 'M',
+ 3 => 'G',
+ 4 => 'T',
+ 5 => 'P',
+ 6 => 'E',
+ 7 => 'Z',
+ 8 => 'Y'
+ );
+
+ // we need at least 3 digits to be displayed
+ if (3 > $length + $comma) {
+ $length = 3 - $comma;
+ }
+
+ // check for negativ value to retain sign
+ if ($value < 0) {
+ $sign = '-';
+ $value = abs($value);
+ } else {
+ $sign = '';
+ }
+
+ $dh = PMA_pow(10, $comma);
+ $li = PMA_pow(10, $length);
+ $unit = $units[0];
+
+ if ($value >= 1) {
+ for ($d = 8; $d >= 0; $d--) {
+ if (isset($units[$d]) && $value >= $li * PMA_pow(1000, $d-1)) {
+ $value = round($value / (PMA_pow(1000, $d) / $dh)) /$dh;
+ $unit = $units[$d];
break 1;
} // end if
} // end for
+ } elseif (!$only_down && (float) $value !== 0.0) {
+ for ($d = -8; $d <= 8; $d++) {
+ if (isset($units[$d]) && $value <= $li * PMA_pow(1000, $d-1)) {
+ $value = round($value / (PMA_pow(1000, $d) / $dh)) /$dh;
+ $unit = $units[$d];
+ break 1;
+ } // end if
+ } // end for
+ } // end if ($value >= 1) elseif (!$only_down && (float) $value !== 0.0)
- if ($unit != $GLOBALS['byteUnits'][0]) {
- $return_value = number_format($value, $comma, $GLOBALS['number_decimal_separator'], $GLOBALS['number_thousands_separator']);
- } else {
- $return_value = number_format($value, 0, $GLOBALS['number_decimal_separator'], $GLOBALS['number_thousands_separator']);
- }
+ $value = number_format($value,
+ $comma,
+ $GLOBALS['number_decimal_separator'],
+ $GLOBALS['number_thousands_separator']);
- return array($return_value, $unit);
- } // end of the 'PMA_formatByteDown' function
+ return $sign . $value . ' ' . $unit;
+} // end of the 'PMA_formatNumber' function
- /**
- * Formats $value to the given length and appends SI prefixes
- * $comma is not substracted from the length
- * with a $length of 0 no truncation occurs, number is only formated
- * to the current locale
- *
- * examples:
- *
- * echo PMA_formatNumber(123456789, 6); // 123,457 k
- * echo PMA_formatNumber(-123456789, 4, 2); // -123.46 M
- * echo PMA_formatNumber(-0.003, 6); // -3 m
- * echo PMA_formatNumber(0.003, 3, 3); // 0.003
- * echo PMA_formatNumber(0.00003, 3, 2); // 0.03 m
- * echo PMA_formatNumber(0, 6); // 0
- *
- *
- * @param double $value the value to format
- * @param integer $length the max length
- * @param integer $comma the number of decimals to retain
- * @param boolean $only_down do not reformat numbers below 1
- *
- * @return string the formatted value and its unit
- *
- * @access public
- *
- * @author staybyte, sebastian mendel
- * @version 1.1.0 - 2005-10-27
- */
- function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false)
- {
- if ($length === 0) {
- return number_format($value,
- $comma,
- $GLOBALS['number_decimal_separator'],
- $GLOBALS['number_thousands_separator']);
- }
+/**
+ * Extracts ENUM / SET options from a type definition string
+ *
+ * @param string The column type definition
+ *
+ * @return array The options or
+ * boolean false in case of an error.
+ *
+ * @author rabus
+ */
+function PMA_getEnumSetOptions($type_def)
+{
+ $open = strpos($type_def, '(');
+ $close = strrpos($type_def, ')');
+ if (!$open || !$close) {
+ return false;
+ }
+ $options = substr($type_def, $open + 2, $close - $open - 3);
+ $options = explode('\',\'', $options);
+ return $options;
+} // end of the 'PMA_getEnumSetOptions' function
- // this units needs no translation, ISO
- $units = array(
- -8 => 'y',
- -7 => 'z',
- -6 => 'a',
- -5 => 'f',
- -4 => 'p',
- -3 => 'n',
- -2 => 'µ',
- -1 => 'm',
- 0 => ' ',
- 1 => 'k',
- 2 => 'M',
- 3 => 'G',
- 4 => 'T',
- 5 => 'P',
- 6 => 'E',
- 7 => 'Z',
- 8 => 'Y'
- );
+/**
+ * Writes localised date
+ *
+ * @param string the current timestamp
+ *
+ * @return string the formatted date
+ *
+ * @access public
+ */
+function PMA_localisedDate($timestamp = -1, $format = '')
+{
+ global $datefmt, $month, $day_of_week;
- // we need at least 3 digits to be displayed
- if (3 > $length + $comma) {
- $length = 3 - $comma;
- }
-
- // check for negativ value to retain sign
- if ($value < 0) {
- $sign = '-';
- $value = abs($value);
- } else {
- $sign = '';
- }
-
- $dh = PMA_pow(10, $comma);
- $li = PMA_pow(10, $length);
- $unit = $units[0];
-
- if ($value >= 1) {
- for ($d = 8; $d >= 0; $d--) {
- if (isset($units[$d]) && $value >= $li * PMA_pow(1000, $d-1)) {
- $value = round($value / (PMA_pow(1000, $d) / $dh)) /$dh;
- $unit = $units[$d];
- break 1;
- } // end if
- } // end for
- } elseif (!$only_down && (float) $value !== 0.0) {
- for ($d = -8; $d <= 8; $d++) {
- if (isset($units[$d]) && $value <= $li * PMA_pow(1000, $d-1)) {
- $value = round($value / (PMA_pow(1000, $d) / $dh)) /$dh;
- $unit = $units[$d];
- break 1;
- } // end if
- } // end for
- } // end if ($value >= 1) elseif (!$only_down && (float) $value !== 0.0)
-
- $value = number_format($value,
- $comma,
- $GLOBALS['number_decimal_separator'],
- $GLOBALS['number_thousands_separator']);
-
- return $sign . $value . ' ' . $unit;
- } // end of the 'PMA_formatNumber' function
-
- /**
- * Extracts ENUM / SET options from a type definition string
- *
- * @param string The column type definition
- *
- * @return array The options or
- * boolean false in case of an error.
- *
- * @author rabus
- */
- function PMA_getEnumSetOptions($type_def)
- {
- $open = strpos($type_def, '(');
- $close = strrpos($type_def, ')');
- if (!$open || !$close) {
- return false;
- }
- $options = substr($type_def, $open + 2, $close - $open - 3);
- $options = explode('\',\'', $options);
- return $options;
- } // end of the 'PMA_getEnumSetOptions' function
-
- /**
- * Writes localised date
- *
- * @param string the current timestamp
- *
- * @return string the formatted date
- *
- * @access public
- */
- function PMA_localisedDate($timestamp = -1, $format = '')
- {
- global $datefmt, $month, $day_of_week;
-
- if ($format == '') {
- $format = $datefmt;
- }
-
- if ($timestamp == -1) {
- $timestamp = time();
- }
-
- $date = preg_replace('@%[aA]@', $day_of_week[(int)strftime('%w', $timestamp)], $format);
- $date = preg_replace('@%[bB]@', $month[(int)strftime('%m', $timestamp)-1], $date);
-
- return strftime($date, $timestamp);
- } // end of the 'PMA_localisedDate()' function
-
-
- /**
- * returns a tab for tabbed navigation.
- * If the variables $link and $args ar left empty, an inactive tab is created
- *
- * @uses $GLOBALS['strEmpty']
- * @uses $GLOBALS['strDrop']
- * @uses $GLOBALS['active_page']
- * @uses $GLOBALS['url_query']
- * @uses $cfg['MainPageIconic']
- * @uses $GLOBALS['pmaThemeImage']
- * @uses PMA_generate_common_url()
- * @uses E_USER_NOTICE
- * @uses htmlentities()
- * @uses urlencode()
- * @uses sprintf()
- * @uses trigger_error()
- * @uses array_merge()
- * @uses basename()
- * @param array $tab array with all options
- * @return string html code for one tab, a link if valid otherwise a span
- * @access public
- */
- function PMA_getTab($tab)
- {
- // default values
- $defaults = array(
- 'text' => '',
- 'class' => '',
- 'active' => false,
- 'link' => '',
- 'sep' => '?',
- 'attr' => '',
- 'args' => '',
- 'warning' => '',
- );
-
- $tab = array_merge($defaults, $tab);
-
- // determine additionnal style-class
- if (empty($tab['class'])) {
- if ($tab['text'] == $GLOBALS['strEmpty']
- || $tab['text'] == $GLOBALS['strDrop']) {
- $tab['class'] = 'caution';
- } elseif (!empty($tab['active'])
- || (isset($GLOBALS['active_page'])
- && $GLOBALS['active_page'] == $tab['link'])
- || basename(PMA_getenv('PHP_SELF')) == $tab['link'])
- {
- $tab['class'] = 'active';
- }
- }
-
- if (!empty($tab['warning'])) {
- $tab['class'] .= ' warning';
- $tab['attr'] .= ' title="' . htmlspecialchars($tab['warning']) . '"';
- }
-
- // build the link
- if (!empty($tab['link'])) {
- $tab['link'] = htmlentities($tab['link']);
- $tab['link'] = $tab['link'] . $tab['sep']
- .(empty($GLOBALS['url_query']) ?
- PMA_generate_common_url() : $GLOBALS['url_query']);
- if (!empty($tab['args'])) {
- foreach ($tab['args'] as $param => $value) {
- $tab['link'] .= '&' . urlencode($param) . '='
- . urlencode($value);
- }
- }
- }
-
- // display icon, even if iconic is disabled but the link-text is missing
- if (($GLOBALS['cfg']['MainPageIconic'] || empty($tab['text']))
- && isset($tab['icon'])) {
- $image = '' . $error_message . '