| Server IP : 54.36.91.62 / Your IP : 216.73.217.117 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/components/com_community/assets/source/js/popups/ |
Upload File : |
(function( root, $, factory ) {
joms.popup || (joms.popup = {});
joms.popup.page || (joms.popup.page = {});
joms.popup.page.banMember = factory( root, $ );
define([ 'utils/popup' ], function() {
return joms.popup.page.banMember;
});
})( window, joms.jQuery, function( window ) {
var popup, elem, id, userid;
function render( _popup, _id, _userid ) {
if ( elem ) elem.off();
popup = _popup;
id = _id;
userid = _userid;
joms.ajax({
func: 'pages,ajaxBanMember',
data: [ userid, id ],
callback: function( json ) {
popup.items[0] = {
type: 'inline',
src: buildHtml( json )
};
popup.updateItemHTML();
if ( json.success ) {
popup.st.callbacks || (popup.st.callbacks = {});
popup.st.callbacks.close = function() {
window.location.reload();
};
}
}
});
}
function buildHtml( json ) {
json || (json = {});
return [
'<div class="joms-popup joms-popup--whiteblock">',
'<div class="joms-popup__title"><button class="mfp-close" type="button" title="',window.joms_lang.COM_COMMUNITY_CLOSE_BUTTON_TITLE,'">×</button>', ( json.title || '' ), '</div>',
'<div class="joms-popup__content joms-popup__content--single">', ( json.html || json.message || json.error || '' ), '</div>',
'<div class="joms-popup__action">',
'<button class="joms-button--neutral joms-button--small joms-js--button-close">', window.joms_lang.COM_COMMUNITY_CLOSE_BUTTON, '</button>',
'</div>',
'</div>'
].join('');
}
// Exports.
return function( id, userid ) {
joms.util.popup.prepare(function( mfp ) {
render( mfp, id, userid );
});
};
});