⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.97
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-horde
/
js
/
View File Name :
imple.js
/** * imple.js - Horde core Imple code. * * Fires these events: * =================== * [IMPLE NAME]:do * Parameter: parameters list to send to the AJAX endpoint * * [IMPLE NAME]:complete * Parameter: response from AJAX endpoint * * @author Michael Slusarz
* @copyright 2012-2015 Horde LLC * @license LGPL-2.1 (http://www.horde.org/licenses/lgpl21) */ var HordeImple = { actions: $H(), runImple: function(id, e) { var params = this.actions.get(id); if (Object.isString(params)) { eval(params); } else { if (e.type == 'submit' && e.element().match('FORM')) { params.imple_submit = Object.toJSON(e.element().serialize(true)); } $(id).fire(params.imple + ':do', params); HordeCore.doAction('imple', params, { callback: this.impleCallback.bind(this, id) }); } if (e) { e.stop(); } }, impleCallback: function(id, r) { $(id).fire(this.actions.get(id).imple + ':complete', r); }, // args = id, observe, params add: function(args) { if (args) { this.actions.set(args.id, args.params); $(args.id).observe(args.observe, this.runImple.bind(this, args.id)); } } };