/home/mjc1/public_html/ej_sql/libraries/export/xml.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Set of functions used to build XML dumps of tables
 *
 * @version $Id$
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 *
 */
if (strlen($GLOBALS['db'])) { /* Can't do server export */

if (isset($plugin_list)) {
    
$plugin_list['xml'] = array(
        
'text' => 'strXML',
        
'extension' => 'xml',
        
'mime_type' => 'text/xml',
        
'options' => array(
            array(
'type' => 'hidden''name' => 'data'),
            ),
        
'options_text' => 'strOptions',
        );
} else {

/**
 * Outputs comment
 *
 * @param   string      Text of comment
 *
 * @return  bool        Whether it suceeded
 */
function PMA_exportComment($text) {
    return 
PMA_exportOutputHandler('<!-- ' $text ' -->' $GLOBALS['crlf']);
}

/**
 * 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() {
    global 
$crlf;
    global 
$cfg;

    if (
$GLOBALS['output_charset_conversion']) {
        
$charset $GLOBALS['charset_of_file'];
    } else {
        
$charset $GLOBALS['charset'];
    }

    
$head  =  '<?xml version="1.0" encoding="' $charset '" ?>' $crlf
           
.  '<!--' $crlf
           
.  '-' $crlf
           
.  '- phpMyAdmin XML Dump' $crlf
           
.  '- version ' PMA_VERSION $crlf
           
.  '- http://www.phpmyadmin.net' $crlf
           
.  '-' $crlf
           
.  '- ' $GLOBALS['strHost'] . ': ' $cfg['Server']['host'];
    if (!empty(
$cfg['Server']['port'])) {
         
$head .= ':' $cfg['Server']['port'];
    }
    
$head .= $crlf
           
.  '- ' $GLOBALS['strGenTime'] . ': ' PMA_localisedDate() . $crlf
           
.  '- ' $GLOBALS['strServerVersion'] . ': ' substr(PMA_MYSQL_INT_VERSION01) . '.' . (int) substr(PMA_MYSQL_INT_VERSION12) . '.' . (int) substr(PMA_MYSQL_INT_VERSION3) . $crlf
           
.  '- ' $GLOBALS['strPHPVersion'] . ': ' phpversion() . $crlf
           
.  '-->' $crlf $crlf;
    return 
PMA_exportOutputHandler($head);
}

/**
 * Outputs database header
 *
 * @param   string      Database name
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportDBHeader($db) {
    global 
$crlf;
    
$head '<!--' $crlf
          
'- ' $GLOBALS['strDatabase'] . ': ' . (isset($GLOBALS['use_backquotes']) ? PMA_backquote($db) : '\'' $db '\''). $crlf
          
'-->' $crlf
          
'<' $db '>' $crlf;
    return 
PMA_exportOutputHandler($head);
}

/**
 * Outputs database footer
 *
 * @param   string      Database name
 *
 * @return  bool        Whether it suceeded
 *
 * @access  public
 */
function PMA_exportDBFooter($db) {
    global 
$crlf;
    return 
PMA_exportOutputHandler('</' $db '>' $crlf);
}

/**
 * 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
 *
 * @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) {
    
$result      PMA_DBI_query($sql_querynullPMA_DBI_QUERY_UNBUFFERED);

    
$columns_cnt PMA_DBI_num_fields($result);
    for (
$i 0$i $columns_cnt$i++) {
        
$columns[$i] = stripslashes(PMA_DBI_field_name($result$i));
    }
    unset(
$i);

    
$buffer      '  <!-- ' $GLOBALS['strTable'] . ' ' $table ' -->' $crlf;
    if (!
PMA_exportOutputHandler($buffer)) {
        return 
FALSE;
    }

    while (
$record PMA_DBI_fetch_row($result)) {
        
$buffer         '    <' $table '>' $crlf;
        for (
$i 0$i $columns_cnt$i++) {
            if (isset(
$record[$i]) && !is_null($record[$i])) {
                
$buffer .= '        <' $columns[$i] . '>' htmlspecialchars($record[$i])
                        .  
'</' $columns[$i] . '>' $crlf;
            }
        }
        
$buffer         .= '    </' $table '>' $crlf;

        if (!
PMA_exportOutputHandler($buffer)) {
            return 
FALSE;
        }
    }
    
PMA_DBI_free_result($result);

    return 
TRUE;
// end of the 'PMA_getTableXML()' function
}
}
?>