Server IP : 23.254.227.96 / Your IP : 216.73.216.7 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/cwpsrv/var/services/pma_01-03-2025.bak/js/pmd/ |
Upload File : |
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Initialises the data required to run PMD, then fires it up. */ var j_tabs, h_tabs, contr, display_field, server, db, selected_page, pmd_tables_enabled; AJAX.registerTeardown('pmd/init.js', function () { $(".trigger").unbind('click'); }); AJAX.registerOnload('pmd/init.js', function () { $(".trigger").click(function () { $(".panel").toggle("fast"); $(this).toggleClass("active"); $('#ab').accordion("refresh"); return false; }); var tables_data = JSON.parse($("#script_tables").html()); j_tabs = tables_data.j_tabs; h_tabs = tables_data.h_tabs; contr = JSON.parse($("#script_contr").html()); display_field = JSON.parse($("#script_display_field").html()); server = $("#script_server").html(); db = $("#script_db").html(); selected_page = $("#script_display_page").html() === "" ? "-1" : $("#script_display_page").html(); pmd_tables_enabled = $("#pmd_tables_enabled").html() === "1"; Main(); if (! pmd_tables_enabled) { DesignerOfflineDB.open(function(success) { if (success) { Show_tables_in_landing_page(db); } }); } });