Hackfut Security File Manager
Current Path:
/mnt/ceph/services/websiteos/phpmyadmin/phpMyAdmin-4.8.2-all-languages/js
mnt
/
ceph
/
services
/
websiteos
/
phpmyadmin
/
phpMyAdmin-4.8.2-all-languages
/
js
/
📁
..
📄
ajax.js
(30.51 KB)
📄
chart.js
(18.08 KB)
📁
codemirror
📄
common.js
(18.72 KB)
📄
config.js
(26.3 KB)
📄
console.js
(55.94 KB)
📄
cross_framing_protection.js
(471 B)
📄
db_central_columns.js
(10.84 KB)
📄
db_multi_table_query.js
(10.26 KB)
📄
db_operations.js
(6.21 KB)
📄
db_qbe.js
(2.15 KB)
📄
db_search.js
(8.56 KB)
📄
db_structure.js
(15.43 KB)
📄
db_tracking.js
(3.5 KB)
📁
designer
📄
doclinks.js
(20.16 KB)
📄
error_report.js
(9.88 KB)
📄
export.js
(34.15 KB)
📄
export_output.js
(289 B)
📄
functions.js
(169.33 KB)
📄
gis_data_editor.js
(14.38 KB)
📄
import.js
(5.51 KB)
📄
indexes.js
(26.73 KB)
📁
jqplot
📄
keyhandler.js
(3.25 KB)
📄
makegrid.js
(95.38 KB)
📄
menu-resizer.js
(8.12 KB)
📄
messages.php
(39.96 KB)
📄
microhistory.js
(11.32 KB)
📄
multi_column_sort.js
(3.21 KB)
📄
navigation.js
(58.41 KB)
📄
normalization.js
(26.61 KB)
📄
page_settings.js
(1.71 KB)
📄
replication.js
(3.08 KB)
📄
rte.js
(46.56 KB)
📄
server_databases.js
(5.56 KB)
📄
server_plugins.js
(495 B)
📄
server_privileges.js
(18.12 KB)
📄
server_status_advisor.js
(3.62 KB)
📄
server_status_monitor.js
(83.8 KB)
📄
server_status_processes.js
(5.98 KB)
📄
server_status_queries.js
(934 B)
📄
server_status_sorter.js
(1.96 KB)
📄
server_status_variables.js
(3.19 KB)
📄
server_user_groups.js
(1.34 KB)
📄
server_variables.js
(4.03 KB)
📄
shortcuts_handler.js
(3.19 KB)
📄
sql.js
(37.41 KB)
📄
tbl_change.js
(28.37 KB)
📄
tbl_chart.js
(13.8 KB)
📄
tbl_find_replace.js
(1.54 KB)
📄
tbl_gis_visualization.js
(10.69 KB)
📄
tbl_operations.js
(13.88 KB)
📄
tbl_relation.js
(8.7 KB)
📄
tbl_select.js
(15.44 KB)
📄
tbl_structure.js
(19.4 KB)
📄
tbl_tracking.js
(3.71 KB)
📄
tbl_zoom_plot_jqplot.js
(21.81 KB)
📁
transformations
📄
u2f.js
(2.47 KB)
📁
vendor
📄
whitelist.php
(1.23 KB)
Editing: db_qbe.js
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * @fileoverview function used in QBE for DB * @name Database Operations * * @requires jQuery * @requires jQueryUI * @requires js/functions.js * */ /** * Ajax event handlers here for db_qbe.php * * Actions Ajaxified here: * Select saved search */ /** * Unbind all event handlers before tearing down a page */ AJAX.registerTeardown('db_qbe.js', function () { $(document).off('change', 'select[name^=criteriaColumn]'); $(document).off('change', '#searchId'); $(document).off('click', '#saveSearch'); $(document).off('click', '#updateSearch'); $(document).off('click', '#deleteSearch'); }); AJAX.registerOnload('db_qbe.js', function () { PMA_getSQLEditor($('#textSqlquery'), {}, 'both'); /** * Ajax handler to check the corresponding 'show' checkbox when column is selected */ $(document).on('change', 'select[name^=criteriaColumn]', function (event) { if ($(this).val()) { var index = (/\d+/).exec($(this).attr('name')); $('input[name=criteriaShow\\[' + index + '\\]]').prop('checked', true); } }); /** * Ajax event handlers for 'Select saved search' */ $(document).on('change', '#searchId', function (event) { $('#action').val('load'); $('#formQBE').submit(); }); /** * Ajax event handlers for 'Create bookmark' */ $(document).on('click', '#saveSearch', function () { $('#action').val('create'); }); /** * Ajax event handlers for 'Update bookmark' */ $(document).on('click', '#updateSearch', function (event) { $('#action').val('update'); }); /** * Ajax event handlers for 'Delete bookmark' */ $(document).on('click', '#deleteSearch', function (event) { var question = PMA_sprintf(PMA_messages.strConfirmDeleteQBESearch, $('#searchId').find('option:selected').text()); if (!confirm(question)) { return false; } $('#action').val('delete'); }); var windowwidth = $(window).width(); $('.jsresponsive').css('max-width', (windowwidth - 35) + 'px'); });
Upload File
Create Folder