403Webshell
Server IP : 61.19.30.66  /  Your IP : 216.73.216.80
Web Server : Apache/2.2.22 (Ubuntu)
System : Linux klw 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 17:39:31 UTC 2014 x86_64
User : www-data ( 33)
PHP Version : 5.3.10-1ubuntu3.48
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : ON  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/phpmyadminxx/libraries/export/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/phpmyadminxx/libraries/export/mediawiki.php
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Set of functions used to build MediaWiki dumps of tables
 *
 * @package phpMyAdmin-Export-MediaWiki
 * @version $Id: mediawiki.php 12972 2009-09-14 06:21:04Z drummingds1 $
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

if (isset($plugin_list)) {
    $plugin_list['mediawiki'] = array(
        'text' => __('MediaWiki Table'),
        'extension' => 'txt',
        'mime_type' => 'text/plain',
        'options' => array(
            array('type' => 'begin_group', 'name' => 'general_opts'),
            array('type' => 'hidden', 'name' => 'structure_or_data'),
            array('type' => 'end_group')
            ),
        'options_text' => __('Options'),
        );
} else {

/**
 * Outputs comment
 *
 * @param   string      Text of comment
 *
 * @return  bool        Whether it suceeded
 */
function PMA_exportComment($text) {
    return TRUE;
}

/**
 * Outputs export footer
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportFooter() {
    return TRUE;
}

/**
 * Outputs export header
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportHeader() {
    return TRUE;
}

/**
 * Outputs database header
 *
 * @param   string      Database name
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportDBHeader($db) {
    return TRUE;
}

/**
 * Outputs database footer
 *
 * @param   string      Database name
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportDBFooter($db) {
    return TRUE;
}

/**
 * Outputs create database database
 *
 * @param   string      Database name
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportDBCreate($db) {
    return TRUE;
}

/**
 * Outputs the content of a table in MediaWiki format
 *
 * @param   string      the database name
 * @param   string      the table name
 * @param   string      the end of line sequence
 * @param   string      the url to go back in case of error
 * @param   string      SQL query for obtaining data
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
    global $mediawiki_export_struct;
    global $mediawiki_export_data;
    
    $result  = PMA_DBI_fetch_result("SHOW COLUMNS FROM `" . $db . "`.`" . $table . "`");
    $row_cnt = count($result);

    $output = "{| cellpadding=\"10\" cellspacing=\"0\" border=\"1\" style=\"text-align:center;\"\n";
    $output .= "|+'''" . $table . "'''\n";
    $output .= "|- style=\"background:#ffdead;\"\n";
    $output .= "! style=\"background:#ffffff\" | \n";
    for ($i = 0; $i < $row_cnt; ++$i) {
        $output .= " | " . $result[$i]['Field'];
        if (($i + 1) != $row_cnt) {
            $output .= "\n";
        }
    }
    $output .= "\n";
    
    $output .= "|- style=\"background:#f9f9f9;\"\n";
    $output .= "! style=\"background:#f2f2f2\" | Type\n";
    for ($i = 0; $i < $row_cnt; ++$i) {
        $output .= " | " . $result[$i]['Type'];
        if (($i + 1) != $row_cnt) {
            $output .= "\n";
        }
    }
    $output .= "\n";
    
    $output .= "|- style=\"background:#f9f9f9;\"\n";
    $output .= "! style=\"background:#f2f2f2\" | Null\n";
    for ($i = 0; $i < $row_cnt; ++$i) {
        $output .= " | " . $result[$i]['Null'];
        if (($i + 1) != $row_cnt) {
            $output .= "\n";
        }
    }
    $output .= "\n";
    
    $output .= "|- style=\"background:#f9f9f9;\"\n";
    $output .= "! style=\"background:#f2f2f2\" | Default\n";
    for ($i = 0; $i < $row_cnt; ++$i) {
        $output .= " | " . $result[$i]['Default'];
        if (($i + 1) != $row_cnt) {
            $output .= "\n";
        }
    }
    $output .= "\n";
    
    $output .= "|- style=\"background:#f9f9f9;\"\n";
    $output .= "! style=\"background:#f2f2f2\" | Extra\n";
    for ($i = 0; $i < $row_cnt; ++$i) {
        $output .= " | " . $result[$i]['Extra'];
        if (($i + 1) != $row_cnt) {
            $output .= "\n";
        }
    }
    $output .= "\n";
    
    $output .= "|}\n\n\n\n";
    return PMA_exportOutputHandler($output);
}

}
?>

Youez - 2016 - github.com/yon3zu
LinuXploit