/home/mjc1/public_html/ej_sql/libraries/display_import.lib.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 *
 * @version $Id$
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 *
 */
require_once './libraries/file_listing.php';
require_once 
'./libraries/plugin_interface.lib.php';

/* Scan for plugins */
$import_list PMA_getPlugins('./libraries/import/'$import_type);

/* Fail if we didn't find any plugin */
if (empty($import_list)) {
    
$GLOBALS['show_error_header'] = TRUE;
    
PMA_showMessage($strCanNotLoadImportPlugins);
    unset(
$GLOBALS['show_error_header']);
    require 
'./libraries/footer.inc.php';
}
?>

<form action="import.php" method="post" enctype="multipart/form-data" name="import">
<?php
if ($import_type == 'server') {
    echo 
PMA_generate_common_hidden_inputs(''''1);
} elseif (
$import_type == 'database') {
    echo 
PMA_generate_common_hidden_inputs($db''1);
} else {
    echo 
PMA_generate_common_hidden_inputs($db$table1);
}
echo 
'    <input type="hidden" name="import_type" value="' $import_type '" />';
echo 
PMA_pluginGetJavascript($import_list);
?>

    <h2><?php echo $strImport?></h2>

    <!-- File name, and some other common options -->
    <fieldset class="options">
        <legend><?php echo $strFileToImport?></legend>

        <?php
        
if ($GLOBALS['is_upload']) {
        
?>
        <div class="formelementrow">
        <label for="input_import_file"><?php echo $strLocationTextfile?></label>
        <input style="margin: 5px" type="file" name="import_file" id="input_import_file" onchange="match_file(this.value);" />
        <?php
        
echo PMA_displayMaximumUploadSize($max_upload_size) . "\n";
        
// some browsers should respect this :)
        
echo PMA_generateHiddenMaxFileSize($max_upload_size) . "\n";
        } else {
            echo 
'<div class="warning">' "\n";
            echo 
$strUploadsNotAllowed "\n";
        }
        
?>
        </div>
<?php
if (!empty($cfg['UploadDir'])) {
    
$extensions '';
    foreach (
$import_list as $key => $val) {
        if (!empty(
$extensions)) {
            
$extensions .= '|';
        }
        
$extensions .= $val['extension'];
    }
    
$matcher '@\.(' $extensions ')(\.(' PMA_supportedDecompressions() . '))?$@';

    
$files PMA_getFileSelectOptions(PMA_userDir($cfg['UploadDir']), $matcher, (isset($timeout_passed) && $timeout_passed && isset($local_import_file)) ? $local_import_file '');
    echo 
'<div class="formelementrow">' "\n";
    if (
$files === FALSE) {
        echo 
'    <div class="warning">' "\n";
        echo 
'        <strong>' $strError '</strong>: ' "\n";
        echo 
'        ' $strWebServerUploadDirectoryError "\n";
        echo 
'    </div>' "\n";
    } elseif (!empty(
$files)) {
        echo 
"\n";
        echo 
'    <i>' $strOr '</i><br/><label for="select_local_import_file">' $strWebServerUploadDirectory '</label>&nbsp;: ' "\n";
        echo 
'    <select style="margin: 5px" size="1" name="local_import_file" onchange="match_file(this.value)" id="select_local_import_file">' "\n";
        echo 
'        <option value="">&nbsp;</option>' "\n";
        echo 
$files;
        echo 
'    </select>' "\n";
    }
    echo 
'</div>' "\n";
// end if (web-server upload directory)

// charset of file
echo '<div class="formelementrow">' "\n";
if (
$cfg['AllowAnywhereRecoding'] && $allow_recoding) {
    echo 
'<label for="charset_of_file">' $strCharsetOfFile '</label>' "\n";
    
$temp_charset reset($cfg['AvailableCharsets']);
    echo 
'    <select id="charset_of_file" name="charset_of_file" size="1">' "\n"
         
'            <option value="' htmlentities($temp_charset) . '"';
    if (
$temp_charset == $charset) {
        echo 
' selected="selected"';
    }
    echo 
'>' htmlentities($temp_charset) . '</option>' "\n";
    while (
$temp_charset next($cfg['AvailableCharsets'])) {
        echo 
'            <option value="' htmlentities($temp_charset) . '"';
        if (
$temp_charset == $charset) {
            echo 
' selected="selected"';
        }
        echo 
'>' htmlentities($temp_charset) . '</option>' "\n";
    }
    echo 
'        </select><br />' "\n" '    ';
} elseif (
PMA_MYSQL_INT_VERSION >= 40100) {
    echo 
'<label for="charset_of_file">' $strCharsetOfFile '</label>' "\n";
    echo 
PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_CHARSET'charset_of_file''charset_of_file''utf8'FALSE);
// end if (recoding)
echo '</div>' "\n";

// zip, gzip and bzip2 encode features
$compressions $strNone;

if (
$cfg['GZipDump'] && @function_exists('gzopen')) {
    
$compressions .= ', gzip';
}
if (
$cfg['BZipDump'] && @function_exists('bzopen')) {
    
$compressions .= ', bzip2';
}
if (
$cfg['ZipDump'] && @function_exists('gzinflate')) {
    
$compressions .= ', zip';
}

// We don't have show anything about compression, when no supported
if ($compressions != $strNone) {
    echo 
'<div class="formelementrow">' "\n";
    
printf($strCompressionWillBeDetected$compressions);
    echo 
'</div>' "\n";
}
echo 
"\n";
?>
    </fieldset>
    <fieldset class="options">
        <legend><?php echo $strPartialImport?></legend>

        <?php
        
if (isset($timeout_passed) && $timeout_passed) {
            echo 
'<div class="formelementrow">' "\n";
            echo 
'<input type="hidden" name="skip" value="' $offset '" />';
            echo 
sprintf($strTimeoutInfo$offset) . '';
            echo 
'</div>' "\n";
        }
        
?>
        <div class="formelementrow">
        <input type="checkbox" name="allow_interrupt" value="yes"
            id="checkbox_allow_interrupt" <?php echo PMA_pluginCheckboxCheck('Import''allow_interrupt'); ?>/>
        <label for="checkbox_allow_interrupt"><?php echo $strAllowInterrupt?></label><br />
        </div>

        <?php
        
if (! (isset($timeout_passed) && $timeout_passed)) {
        
?>
        <div class="formelementrow">
        <label for="text_skip_queries"><?php echo $strSkipQueries?></label>
        <input type="text" name="skip_queries" value="<?php echo PMA_pluginGetDefault('Import''skip_queries');?>" id="text_skip_queries" />
        </div>
        <?php
        
} else {
        
// If timeout has passed,
        // do not show the Skip dialog to avoid the risk of someone
        // entering a value here that would interfere with "skip"
        
?>
        <input type="hidden" name="skip_queries" value="<?php echo PMA_pluginGetDefault('Import''skip_queries');?>" id="text_skip_queries" />
        <?php
        
}
        
?>
    </fieldset>

    <fieldset class="options">
        <legend><?php echo $strImportFormat?></legend>
<?php
// Let's show format options now
echo '<div style="float: left;">';
echo 
PMA_pluginGetChoice('Import''format'$import_list);
echo 
'</div>';

echo 
'<div style="float: left;">';
echo 
PMA_pluginGetOptions('Import'$import_list);
echo 
'</div>';
?>
        <div class="clearfloat"></div>
    </fieldset>
<?php
// Encoding setting form appended by Y.Kawada
if (function_exists('PMA_set_enc_form')) {
    echo 
PMA_set_enc_form('            ');
}
echo 
"\n";
?>
    <fieldset class="tblFooters">
        <input type="submit" value="<?php echo $strGo?>" id="buttonGo" />
    </fieldset>
</form>
<script type="text/javascript">
//<![CDATA[
    init_options();
//]]>
</script>