| Server IP : 77.39.210.126 / Your IP : 216.73.216.203 Web Server : Apache System : Linux v00l0v-vmpcnews.sphostserver.com 4.18.0-553.124.4.el8_10.x86_64 #1 SMP Fri May 15 04:14:14 EDT 2026 x86_64 User : artecasarepresti ( 1022) PHP Version : 7.4.33 Disable Function : dl,passthru,proc_open,proc_close,proc_terminate,shell_exec,system MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/artecasarepresti/www/wp-content/plugins/cookie-notice/includes/modules/amp/ |
Upload File : |
function cnDisableRevoke() {
var huObject = null;
// get valid hu object
for ( const object of [ '__hu', 'hu' ] ) {
// check global variable
if ( typeof window[object] !== 'undefined' && window[object].hasOwnProperty( 'earlyInit' ) && typeof window[object].earlyInit === 'function' ) {
huObject = window[object];
// no need to check again
break;
}
}
// force revoke button to be disabled
huObject.options.config.revokeConsent = false;
}
function cnConsentResponse( event ) {
// allow this event to run only once
if ( event.type === 'set-consent.hu' )
document.removeEventListener( 'hide.hu', cnConsentResponse );
document.addEventListener( 'save-consent-response.hu', cnConsentSet( event.detail.categories ) );
}
function cnConsentSet( categories ) {
// it has to use return function to wait for save-consent-response event
return function cnRequestFinished( event ) {
var action = 'accept';
// only basic operations?
if ( categories[1] && ! categories[2] && ! categories[3] && ! categories[4] )
action = 'reject';
// inform amp to save consent
window.parent.postMessage(
{
type: 'consent-response',
action: action,
purposeConsents: {
'basic_operations': categories[1],
'content_personalization': categories[2],
'site_optimization': categories[3],
'ad_personalization': categories[4]
}
},
'*'
);
}
}
// set consent
document.addEventListener( 'hide.hu', cnConsentResponse );
document.addEventListener( 'set-consent.hu', cnConsentResponse );
// disable revoke button
document.addEventListener( 'load.hu', cnDisableRevoke );