Hackfut Security File Manager
Current Path:
/mnt/ceph/services/websiteos/phpmyadmin/phpMyAdmin-4.0.6-all-languages/js
mnt
/
ceph
/
services
/
websiteos
/
phpmyadmin
/
phpMyAdmin-4.0.6-all-languages
/
js
/
📁
..
📄
OpenStreetMap.js
(3.77 KB)
📄
ajax.js
(27.29 KB)
📁
canvg
📄
chart.js
(14.53 KB)
📁
codemirror
📄
common.js
(9.63 KB)
📄
config.js
(23.3 KB)
📄
cross_framing_protection.js
(221 B)
📄
db_operations.js
(3.97 KB)
📄
db_search.js
(7.62 KB)
📄
db_structure.js
(14.7 KB)
📄
export.js
(9.23 KB)
📄
functions.js
(125.16 KB)
📄
get_image.js.php
(4.33 KB)
📄
get_scripts.js.php
(1.12 KB)
📄
gis_data_editor.js
(13.79 KB)
📄
import.js
(3.2 KB)
📄
indexes.js
(7.15 KB)
📁
jqplot
📁
jquery
📄
keyhandler.js
(2.37 KB)
📄
makegrid.js
(76.25 KB)
📄
messages.php
(22.91 KB)
📄
navigation.js
(30.54 KB)
📁
openlayers
📁
pmd
📄
querywindow.js
(609 B)
📄
replication.js
(2.36 KB)
📄
rte.js
(38.38 KB)
📄
server_databases.js
(4.24 KB)
📄
server_plugins.js
(1.16 KB)
📄
server_privileges.js
(21.33 KB)
📄
server_status.js
(915 B)
📄
server_status_advisor.js
(3.55 KB)
📄
server_status_monitor.js
(89.56 KB)
📄
server_status_queries.js
(1.08 KB)
📄
server_status_sorter.js
(2.98 KB)
📄
server_status_variables.js
(3.47 KB)
📄
server_variables.js
(5.7 KB)
📄
sql.js
(22.27 KB)
📄
tbl_change.js
(19.42 KB)
📄
tbl_chart.js
(10.16 KB)
📄
tbl_gis_visualization.js
(9.97 KB)
📄
tbl_relation.js
(942 B)
📄
tbl_select.js
(7.61 KB)
📄
tbl_structure.js
(16.96 KB)
📄
tbl_zoom_plot_jqplot.js
(21.38 KB)
Editing: import.js
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Functions used in the import tab * */ /** * Toggles the hiding and showing of each plugin's options * according to the currently selected plugin from the dropdown list */ function changePluginOpts() { $("#format_specific_opts div.format_specific_options").each(function() { $(this).hide(); }); var selected_plugin_name = $("#plugins option:selected").val(); $("#" + selected_plugin_name + "_options").fadeIn('slow'); if (selected_plugin_name == "csv") { $("#import_notification").text(PMA_messages['strImportCSV']); } else { $("#import_notification").text(""); } } /** * Toggles the hiding and showing of each plugin's options and sets the selected value * in the plugin dropdown list according to the format of the selected file */ function matchFile(fname) { var fname_array = fname.toLowerCase().split("."); var len = fname_array.length; if (len != 0) { var extension = fname_array[len - 1]; if (extension == "gz" || extension == "bz2" || extension == "zip") { len--; } // Only toggle if the format of the file can be imported if ($("select[name='format'] option").filterByValue(fname_array[len - 1]).length == 1) { $("select[name='format'] option").filterByValue(fname_array[len - 1]).prop('selected', true); changePluginOpts(); } } } /** * Unbind all event handlers before tearing down a page */ AJAX.registerTeardown('import.js', function() { $("#plugins").unbind('change'); $("#input_import_file").unbind('change'); $("#select_local_import_file").unbind('change'); $("#input_import_file").unbind('change').unbind('focus'); $("#select_local_import_file").unbind('focus'); }); AJAX.registerOnload('import.js', function() { // Initially display the options for the selected plugin changePluginOpts(); // Whenever the selected plugin changes, change the options displayed $("#plugins").change(function() { changePluginOpts(); }); $("#input_import_file").change(function() { matchFile($(this).val()); }); $("#select_local_import_file").change(function() { matchFile($(this).val()); }); /* * When the "Browse the server" form is clicked or the "Select from the web server upload directory" * form is clicked, the radio button beside it becomes selected and the other form becomes disabled. */ $("#input_import_file").bind("focus change", function() { $("#radio_import_file").prop('checked', true); $("#radio_local_import_file").prop('checked', false); }); $("#select_local_import_file").focus(function() { $("#radio_local_import_file").prop('checked', true); $("#radio_import_file").prop('checked', false); }); /** * Set up the interface for Javascript-enabled browsers since the default is for * Javascript-disabled browsers */ $("#scroll_to_options_msg").hide(); $("#format_specific_opts div.format_specific_options") .css({ "border": 0, "margin": 0, "padding": 0 }) .find("h3") .remove(); //$("form[name=import] *").unwrap(); });
Upload File
Create Folder