📁
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: displayPasswordStrength.js
/* # cjt/directives/displayPasswordStrength.js Copyright(c) 2020 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( [ "angular", "cjt/core", "cjt/templates" // NOTE: Pre-load the template cache ], function(angular, CJT) { var RELATIVE_PATH = "libraries/cjt2/directives/displayPasswordStrength.phtml"; var DEFAULT_STYLES = [ "strength-0", "strength-1", "strength-2", "strength-3", "strength-4" ]; var module = angular.module("cjt2.directives.displayPasswordStrength", [ "cjt2.templates" ]); /** * Directive that shows the password strength in a meter bar. * @attribute [fieldId] Optional field id, used to correlate the message from the strength service. Not needed * if only one password strength field is used on the view. * @attribute [styles] Optional comma delimited list of css class names for the colors. Must be 4 items in the * list or the directive will use the defaults. * @attribute [calculateColorBreak] Optional function to process the strength increment process. The function should return * a structure with the following layout: * { * index: <number>, // Number 1 to 5 for the slot to fill too. * color: <string> // CSS class name to use to do the fill for slots 1 to index. * } * If not provided, the built in function uses a step-wise linear algorithm breaking every 20 units for 0 to 100. * @example * * <div displayPasswordStrength></div> */ module.directive("displayPasswordStrength", function() { return { replace: true, restrict: "EACM", templateUrl: CJT.config.debug ? CJT.buildFullPath(RELATIVE_PATH) : RELATIVE_PATH, scope: { fieldId: "@?fieldId", styles: "@?styles", calculateColorBreak: "&calculateColorBreak", testId: "@?testId" }, compile: function(element, attrs) { return { pre: function(scope, element, attrs) { if (!angular.isUndefined(attrs.styles)) { var styles = (attrs.styles + "").split(","); if (styles.length < 5) { throw "You must provide a list of 5 css class names if you are implementing custom styles"; } else { scope.styles = styles; } } }, post: function(scope, el, attrs) { var colors = scope.styles && scope.styles.length === 5 ? scope.styles : DEFAULT_STYLES; var allClasses = colors.join(" "); /** * Get the color related to the indicated password strength. This is the * default implementation. User can override this behavior with their own * method. * * @private * @method calculateColorBreak * @param {Number} strength - current strength * @param {Array} colors - list of css class names * @return {Object} * {Number} index Position to update: 1 to 5. * {String} color Color to use with this strength. */ var _calculateColorBreak = function(strength, colors) { var index = 0; if (strength <= 20) { index = 0; } else if (strength <= 40) { index = 1; } else if (strength <= 60) { index = 2; } else if (strength <= 80) { index = 3; } else { index = 4; } return { index: index + 1, color: colors[index] }; }; if (scope.calculateColorBreak) { scope.calculateColorBreak = _calculateColorBreak; } // Monitor for the passwordStrengthChange event scope.$on("passwordStrengthChange", function(evt, result) { if ( !angular.isUndefined(scope.fieldId) && scope.fieldId !== result.id ) { // This is not for us since its a // message not related to our caller. return; } var hasPassword = result.hasPassword; var strength = result.strength; if (!hasPassword) { el.children("li") .removeClass(allClasses); } else { var colorBreak = scope.calculateColorBreak(strength, colors); el.children("li") .removeClass(allClasses) .slice(0, colorBreak.index) .addClass(colorBreak.color); } }); } }; } }; }); return { DEFAULT_STYLES: DEFAULT_STYLES }; } );
Save