⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 server_databases.php

📁 WEBGAME源码,有架设说明,只是非常简单
💻 PHP
📖 第 1 页 / 共 2 页
字号:
            } // end if... else...            $_url_params['pos'] = $pos + $GLOBALS['cfg']['MaxDbList'];            echo '<a' . $title3 . 'href="server_databases.php'                . PMA_generate_common_url($_url_params) . '">'                . $caption3 . '</a>';            $_url_params['pos'] = floor($databases_count / $GLOBALS['cfg']['MaxDbList']) * $GLOBALS['cfg']['MaxDbList'];            echo '<a' . $title4 . 'href="server_databases.php'                . PMA_generate_common_url($_url_params) . '">'                . $caption4 . '</a>';        }    }    $_url_params['pos'] = $pos;    echo '<form action="./server_databases.php" method="post" name="dbStatsForm" id="dbStatsForm">' . "\n"       . PMA_generate_common_hidden_inputs($_url_params);    $_url_params['sort_by'] = 'SCHEMA_NAME';    $_url_params['sort_order'] = ($sort_by == 'SCHEMA_NAME' && $sort_order == 'asc') ? 'desc' : 'asc';    echo '<table id="tabledatabases" class="data">' . "\n"       . '<thead>' . "\n"       . '<tr>' . "\n"       . ($is_superuser || $cfg['AllowUserDropDatabase'] ? '        <th>&nbsp;</th>' . "\n" : '')       . '    <th><a href="./server_databases.php' . PMA_generate_common_url($_url_params) . '">' . "\n"       . '            ' . $strDatabase . "\n"       . ($sort_by == 'SCHEMA_NAME' ? '                <img class="icon" src="' . $pmaThemeImage . 's_' . $sort_order . '.png" width="11" height="9"  alt="' . ($sort_order == 'asc' ? $strAscending : $strDescending) . '" />' . "\n" : '')       . '        </a></th>' . "\n";    $table_columns = 3;    foreach ( $column_order as $stat_name => $stat ) {        if ( array_key_exists( $stat_name, $first_database ) ) {            if ( $stat['format'] === 'byte' ) {                $table_columns += 2;                $colspan = ' colspan="2"';            } else {                $table_columns++;                $colspan = '';            }            $_url_params['sort_by'] = $stat_name;            $_url_params['sort_order'] = ($sort_by == $stat_name && $sort_order == 'desc') ? 'asc' : 'desc';            echo '    <th' . $colspan . '>'                .'<a href="./server_databases.php' . PMA_generate_common_url($_url_params) . '">' . "\n"                .'            ' . $stat['disp_name'] . "\n"                .($sort_by == $stat_name ? '            <img class="icon" src="' . $pmaThemeImage . 's_' . $sort_order . '.png" width="11" height="9"  alt="' . ($sort_order == 'asc' ? $strAscending : $strDescending) . '" />' . "\n" : '')                .'        </a></th>' . "\n";        }    }    if ($is_superuser) {        echo '    <th>' . ($cfg['PropertiesIconic'] ? '&nbsp;' : $strAction ) . "\n"           . '    </th>' . "\n";    }    echo '</tr>' . "\n"       . '</thead>' . "\n"       . '<tbody>' . "\n";    $odd_row = true;    foreach ($databases as $current) {        echo '<tr class="' . ( $odd_row ? 'odd' : 'even' ) . '">' . "\n";        $odd_row = ! $odd_row;        if ( $is_superuser || $cfg['AllowUserDropDatabase'] ) {            echo '    <td class="tool">' . "\n";            if ($current['SCHEMA_NAME'] != 'mysql' && (PMA_MYSQL_INT_VERSION < 50002 || $current['SCHEMA_NAME'] != 'information_schema')) {                echo '        <input type="checkbox" name="selected_dbs[]" title="' . htmlspecialchars($current['SCHEMA_NAME']) . '" value="' . htmlspecialchars($current['SCHEMA_NAME']) . '" ' . (empty($checkall) ? '' : 'checked="checked" ') . '/>' . "\n";            } else {                echo '        <input type="checkbox" name="selected_dbs[]" title="' . htmlspecialchars($current['SCHEMA_NAME']) . '" value="' . htmlspecialchars($current['SCHEMA_NAME']) . '" disabled="disabled"/>' . "\n";            }            echo '    </td>' . "\n";        }        echo '    <td class="name">' . "\n"           . '        <a onclick="if ( window.parent.openDb(\'' . urlencode($current['SCHEMA_NAME']) . '\') ) return false;" href="index.php?' . $url_query . '&amp;db=' . urlencode($current['SCHEMA_NAME']) . '" title="' . sprintf($strJumpToDB, htmlspecialchars($current['SCHEMA_NAME'])) . '" target="_parent">' . "\n"           . '            ' . htmlspecialchars($current['SCHEMA_NAME']) . "\n"           . '        </a>' . "\n"           . '    </td>' . "\n";        foreach ( $column_order as $stat_name => $stat ) {            if ( array_key_exists( $stat_name, $current ) ) {                if ( is_numeric( $stat['footer'] ) ) {                    $column_order[$stat_name]['footer'] += $current[$stat_name];                }                if ( $stat['format'] === 'byte' ) {                    list( $value, $unit ) = PMA_formatByteDown( $current[$stat_name], 3, 1 );                } elseif ( $stat['format'] === 'number' ) {                    $value = PMA_formatNumber( $current[$stat_name], 0 );                } else {                    $value = htmlentities( $current[$stat_name], 0 );                }                echo '    <td class="value">';                if ( isset( $stat['description_function'] ) ) {                    echo '<dfn title="' . $stat['description_function']( $current[$stat_name] ) . '">';                }                echo $value;                if ( isset( $stat['description_function'] ) ) {                    echo '</dfn>';                }                echo '</td>' . "\n";                if ( $stat['format'] === 'byte' ) {                    echo '    <td class="unit">' . $unit . '</td>' . "\n";                }            }        }        if ($is_superuser) {            echo '    <td class="tool">' . "\n"               . '        <a onclick="window.parent.setDb(\'' . urlencode($current['SCHEMA_NAME']) . '\');" href="./server_privileges.php?' . $url_query . '&amp;checkprivs=' . urlencode($current['SCHEMA_NAME']) . '" title="' . sprintf($strCheckPrivsLong, htmlspecialchars($current['SCHEMA_NAME'])) . '">'. "\n"               . '            ' .($cfg['PropertiesIconic'] ? '<img class="icon" src="' . $pmaThemeImage . 's_rights.png" width="16" height="16" alt=" ' .$strCheckPrivs . '" /> ' : $strCheckPrivs ). "\n"               . '        </a></td>' . "\n";        }        echo '</tr>' . "\n";    } // end foreach ( $databases as $key => $current )    unset($current, $odd_row);    echo '<tr>' . "\n";    if ( $is_superuser || $cfg['AllowUserDropDatabase'] ) {        echo '    <th>&nbsp;</th>' . "\n";    }    echo '    <th>' . $strTotalUC . ': ' . $databases_count . '</th>' . "\n";    foreach ( $column_order as $stat_name => $stat ) {        if ( array_key_exists( $stat_name, $first_database ) ) {            if ( $stat['format'] === 'byte' ) {                list( $value, $unit ) = PMA_formatByteDown( $stat['footer'], 3, 1 );            } elseif ( $stat['format'] === 'number' ) {                $value = PMA_formatNumber( $stat['footer'], 0 );            } else {                $value = htmlentities( $stat['footer'], 0 );            }            echo '    <th class="value">';            if ( isset( $stat['description_function'] ) ) {                echo '<dfn title="' . $stat['description_function']( $stat['footer'] ) . '">';            }            echo $value;            if ( isset( $stat['description_function'] ) ) {                echo '</dfn>';            }            echo '</th>' . "\n";            if ( $stat['format'] === 'byte' ) {                echo '    <th class="unit">' . $unit . '</th>' . "\n";            }        }    }    if ( $is_superuser ) {        echo '    <th>&nbsp;</th>' . "\n";    }    echo '</tr>' . "\n";    echo '</tbody>' . "\n"        .'</table>' . "\n";    unset($column_order, $stat_name, $stat, $databases, $table_columns);    if ($is_superuser || $cfg['AllowUserDropDatabase']) {        $common_url_query = PMA_generate_common_url() . '&amp;sort_by=' . $sort_by . '&amp;sort_order=' . $sort_order . '&amp;dbstats=' . $dbstats;        echo '<img class="selectallarrow" src="' . $pmaThemeImage . 'arrow_' . $text_dir . '.png" width="38" height="22" alt="' . $strWithChecked . '" />' . "\n"           . '<a href="./server_databases.php?' . $common_url_query . '&amp;checkall=1" onclick="if ( markAllRows(\'tabledatabases\') ) return false;">' . "\n"           . '    ' . $strCheckAll . '</a> / ' . "\n"           . '<a href="./server_databases.php?' . $common_url_query . '" onclick="if ( unMarkAllRows(\'tabledatabases\') ) return false;">' . "\n"           . '    ' . $strUncheckAll . '</a>' . "\n"           . '<i>' . $strWithChecked . '</i>' . "\n";        PMA_buttonOrImage( 'drop_selected_dbs', 'mult_submit', 'drop_selected_dbs', $strDrop, 'b_deltbl.png' );    }    echo '<ul><li id="li_switch_dbstats"><strong>' . "\n";    if ( empty( $dbstats ) ) {        echo '        <a href="./server_databases.php?' . $url_query . '&amp;dbstats=1"'            .' title="' . $strDatabasesStatsEnable . '">' . "\n"            .'            ' . $strDatabasesStatsEnable;    } else {        echo '        <a href="./server_databases.php?' . $url_query . '"'            .' title="' . $strDatabasesStatsDisable . '">' . "\n"            .'            ' . $strDatabasesStatsDisable;    }    echo '</a></strong><br />' . "\n"        .'        <div class="warning">'        . $strDatabasesStatsHeavyTraffic . '</div></li>' . "\n"        .'</ul>' . "\n";    echo '</form>';} else {    echo $strNoDatabases;}unset($databases_count);/** * Create new database. */echo '<ul><li id="li_create_database">' . "\n";require './libraries/display_create_database.lib.php';echo '    </li>' . "\n";echo '</ul>' . "\n";/** * Sends the footer */require_once './libraries/footer.inc.php';?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -