- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
121 lines
4.0 KiB
JavaScript
Executable File
121 lines
4.0 KiB
JavaScript
Executable File
jQuery( document ).ready(function( $ ){
|
|
$( '.advads-option-group-refresh input:checkbox:checked' ).each( function() {
|
|
var number_option = $( this ).parents( '.advads-ad-group-form' ).find( '.advads-option-group-number' );
|
|
number_option.val( 'all' ).hide();
|
|
});
|
|
|
|
$( '.advads-option-group-refresh input:checkbox' ).on( 'click', function() {
|
|
var number_option = $( this ).parents( '.advads-ad-group-form' ).find( '.advads-option-group-number' );
|
|
if ( this.checked ) {
|
|
number_option.val( 'all' ).hide();
|
|
} else {
|
|
number_option.show();
|
|
}
|
|
});
|
|
|
|
jQuery( '.advads-option-placement-cache-busting input' ).on( 'change', function() {
|
|
var cb_state = jQuery( this ).val(),
|
|
$inputs = jQuery( this ).closest( '.advads-placements-table-options' ).find( '.advanced-ads-inputs-dependent-on-cb' );
|
|
|
|
if ( 'off' === cb_state ) {
|
|
// Hide UI elements that work only with cache-busting.
|
|
$inputs.hide().next().show();
|
|
}
|
|
else {
|
|
$inputs.show().next().hide();
|
|
}
|
|
});
|
|
|
|
$( '#advads-pro-vc-hash-change' ).on( 'click', function() {
|
|
var $button = $(this);
|
|
var $ok = jQuery( '#advads-pro-vc-hash-change-ok' );
|
|
var $error = jQuery( '#advads-pro-vc-hash-change-error' );
|
|
|
|
$( '<span class="spinner advads-spinner"></span>' ).insertAfter( $button );
|
|
$button.hide();
|
|
$ok.hide();
|
|
$error.hide();
|
|
|
|
jQuery.ajax( {
|
|
type: 'POST',
|
|
url: ajaxurl,
|
|
data: {
|
|
action: 'advads-reset-vc-cache',
|
|
security: $('#advads-pro-reset-vc-cache-nonce').val()
|
|
},
|
|
} ).done(function( data ) {
|
|
jQuery( '#advads-pro-vc-hash' ).val( data );
|
|
$ok.show();
|
|
} ).fail(function( jqXHR, textStatus ) {
|
|
$error.show();
|
|
} ).always( function() {
|
|
$( 'span.spinner' ).remove();
|
|
$button.show();
|
|
} );
|
|
});
|
|
|
|
$('.js-placement-activate-cb').on('click',function( e ){
|
|
e.preventDefault();
|
|
const button = $( this );
|
|
const placement = button.data('placement');
|
|
const loader = jQuery( '<span class="advads-loader"></span>' );
|
|
|
|
// Replace the dynamic field with the loader.
|
|
button.parent().replaceWith( loader );
|
|
|
|
$.post( ajaxurl, {
|
|
action: 'advads-placement-activate-cb',
|
|
placement: placement.toString(),
|
|
nonce: window.advads_geo_translation.nonce
|
|
} )
|
|
.done( function ( result ) {
|
|
if ( ! $.isPlainObject( result ) ) {
|
|
return;
|
|
}
|
|
loader.replaceWith( '<p class="advads-notice-inline advads-idea">' + result.data + '</p>' );
|
|
|
|
} )
|
|
.fail( function ( jqXHR, errormessage, errorThrown ) {
|
|
loader.replaceWith( '<p class="advads-notice-inline advads-error">' + jqXHR.responseJSON.data + '</p>' );
|
|
} )
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function advads_cb_check_set_status( status, msg ) {
|
|
if ( status === true ) {
|
|
jQuery( '#advads-cache-busting-possibility' ).val( true );
|
|
} else {
|
|
jQuery( '#advads-cache-busting-possibility' ).val( false );
|
|
jQuery( '#advads-cache-busting-error-result' ).append( msg ? '<br />' + msg : '' ).show();
|
|
}
|
|
}
|
|
|
|
function advads_cb_check_ad_markup( ad_content ) {
|
|
if ( ! ad_content ) {
|
|
return;
|
|
}
|
|
|
|
// checks whether the ad contains the jQuery.document.ready() and document.write(ln) functions
|
|
if ( ( /\)\.ready\(/.test( ad_content ) || /(\$|jQuery)\(\s*?function\(\)/.test( ad_content ) ) && /document\.write/.test( ad_content ) ) {
|
|
advads_cb_check_set_status( false );
|
|
return;
|
|
}
|
|
|
|
var search_str = 'cache_busting_test';
|
|
var source = ad_content += search_str;
|
|
var parser = new Prescribe( source, { autoFix: true } );
|
|
var tok, result = '';
|
|
|
|
while ( ( tok = parser.readToken() ) ) {
|
|
if (tok) {
|
|
result += Prescribe.tokenToString(tok);
|
|
}
|
|
}
|
|
advads_cb_check_set_status( ( result.substr( - search_str.length ) === search_str ) ? true : false );
|
|
}
|
|
|