MINI SHELL

Server : Apache/2.2.2 (Fedora)
System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686
User : apache ( 48)
PHP Version : 5.2.9
Disable Function : NONE
Directory :  /var/www/html/phpMyAdmin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/phpMyAdmin/db_details_links.php
<?php
/* $Id: db_details_links.php,v 2.16 2005/08/16 17:49:57 lem9 Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:


/**
 * If coming from a Show MySQL link on the home page,
 * put something in $sub_part
 */
if (empty($sub_part)) {
    $sub_part = '_structure';
}


/**
 * Prepares links
 */
// Export link if there is at least one table
if ($num_tables > 0) {
    $tab_export['link'] = 'db_details_export.php';
    $tab_search['link'] = 'db_search.php';
    $tab_qbe['link']    = 'db_details_qbe.php';
}
$tab_structure['link'] = 'db_details_structure.php';
$tab_sql['link']       = 'db_details.php';
$tab_sql['args']['db_query_force'] = 1;
$tab_operation['link'] = 'db_operations.php';

// Drop link if allowed
if (!$GLOBALS['cfg']['AllowUserDropDatabase']) {
    // Check if the user is a Superuser
    $GLOBALS['cfg']['AllowUserDropDatabase'] = PMA_DBI_select_db('mysql');
    PMA_DBI_select_db($db);
}
// rabus: Don't even try to drop information_schema. You won't be able to.
// Believe me. You won't.
$GLOBALS['cfg']['AllowUserDropDatabase'] = $GLOBALS['cfg']['AllowUserDropDatabase'] && !(PMA_MYSQL_INT_VERSION >= 50000 && $db == 'information_schema');
if ($GLOBALS['cfg']['AllowUserDropDatabase']) {
    $tab_drop['link'] = 'sql.php';
    $tab_drop['args']['sql_query']  = 'DROP DATABASE ' . PMA_backquote($db);
    $tab_drop['args']['zero_rows']  = sprintf($GLOBALS['strDatabaseHasBeenDropped'], htmlspecialchars(PMA_backquote($db)));
    $tab_drop['args']['goto']       = 'main.php';
    $tab_drop['args']['back']       = 'db_details' . $sub_part . '.php';
    $tab_drop['args']['reload']     = 1;
    $tab_drop['args']['purge']      = 1;
    $tab_drop['attr'] = 'onclick="return confirmLinkDropDB(this, \'DROP DATABASE ' . PMA_jsFormat($db) . '\')"';
    $tab_drop['class'] = 'caution';
}

// text
$tab_structure['text']  = $GLOBALS['strStructure'];
$tab_sql['text']        = $GLOBALS['strSQL'];
$tab_export['text']     = $GLOBALS['strExport'];
$tab_search['text']     = $GLOBALS['strSearch'];
$tab_drop['text']       = $GLOBALS['strDrop'];
$tab_qbe['text']        = $GLOBALS['strQBE'];
$tab_operation['text']  = $GLOBALS['strOperations'];

// icons
$tab_structure['icon']  = 'b_props.png';
$tab_sql['icon']        = 'b_sql.png';
$tab_export['icon']     = 'b_export.png';
$tab_search['icon']     = 'b_search.png';
$tab_drop['icon']       = 'b_deltbl.png';
$tab_qbe['icon']        = 's_db.png';
$tab_operation['icon']  = 'b_tblops.png';

/**
 * Displays tab links
 */
$tabs = array();
$tabs[] =& $tab_structure;
$tabs[] =& $tab_sql;
$tabs[] =& $tab_search;
$tabs[] =& $tab_qbe;
$tabs[] =& $tab_export;
$tabs[] =& $tab_operation;
if ($GLOBALS['cfg']['AllowUserDropDatabase']) {
    $tabs[] =& $tab_drop;
}

echo PMA_getTabs( $tabs );
unset( $tabs );

/**
 * Settings for relations stuff
 */
require_once('./libraries/relation.lib.php');
$cfgRelation = PMA_getRelationsParam();

// Get additional information about tables for tooltip is done in db_details_db_info.php only once
if ($cfgRelation['commwork']) {
    $comment = PMA_getComments($db);

    /**
     * Displays table comment
     */
    if (is_array($comment)) {
        ?>
    <!-- DB comment -->
    <p id="dbComment"><i>
        <?php echo htmlspecialchars(implode(' ', $comment)) . "\n"; ?>
    </i></p>
        <?php
    } // end if
}

/**
 * Displays a message
 */
if (!empty($message)) {
    PMA_showMessage($message);
    unset($message);
}
?>
<br />

Anon7 - 2021