Linux moodl-moodle-3s8bw1nuh5yqd9-5b875fdd66-8hs4m 4.4.0-186-generic #216-Ubuntu SMP Wed Jul 1 05:34:05 UTC 2020 x86_64
Apache/2.4.41 (Ubuntu)
: 10.39.0.36 | : 10.36.0.0
Cant Read [ /etc/named.conf ]
7.4.3
www-data
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
/
var /
moodledata /
filedir /
5b /
f4 /
[ HOME SHELL ]
Name
Size
Permission
Action
5bf46ac8d194d7662409656cfcbdea...
2.69
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 5bf46ac8d194d7662409656cfcbdea6faef874f3
/*global ns*/ // Create a new editor widget for boolean fields ns.widgets.disposableBoolean = (function ($, EventDispatcher) { /** * A special boolean option that only can be used once. * Requires confirmation before checking it. * * @class * @param {object} parent * @param {object} field * @param {boolean} params * @param {function} setValue */ function DisposableBoolean(parent, field, params, setValue) { var self = this; // Inherit event support EventDispatcher.call(self); var $element; var checked = (params !== undefined && params); setValue(field, checked); // Expose field props self.field = field; /** * Build the DOM element string and then create the HTML. * * @private * @returns {H5P.jQuery} */ var createElement = function () { var state = checked ? ' checked="checked" disabled="disabled"' : ''; var content = '<input type="checkbox"' + state + ' />'; $element = $(ns.createBooleanFieldMarkup(field, content)); if (checked) { $element.addClass('disabled'); } var $input = $element.find('input').on('change', function () { const confirmationDialog = new H5P.ConfirmationDialog({ headerText: H5PEditor.t('H5PEditor.CoursePresentation', 'activeSurfaceWarning'), cancelText: H5PEditor.t('H5PEditor.CoursePresentation', 'cancel'), confirmText: H5PEditor.t('H5PEditor.CoursePresentation', 'ok'), }).appendTo(document.body); confirmationDialog.show(); confirmationDialog.on('confirmed', () => { checked = $input.is(':checked'); setValue(field, checked); $input.attr('disabled', true); $element.addClass('disabled'); self.trigger('checked'); }); confirmationDialog.on('canceled', () => { // Reset $input.attr('checked', false); }); }); }; /** * Appends this fields elements to the given container. * * @param {H5P.jQuery} $container */ self.appendTo = function ($container) { if ($element === undefined) { createElement(); } $element.appendTo($container); }; /** * Checks to see if this fields value is valid. * * @returns {boolean} */ self.validate = function () { return true; // Always valid }; /** * Removes this field from the DOM. */ self.remove = function () { $element.detach(); }; } DisposableBoolean.prototype = Object.create(EventDispatcher.prototype); DisposableBoolean.prototype.constructor = DisposableBoolean; return DisposableBoolean; })(H5P.jQuery, H5P.EventDispatcher);
Close