Commit inicial - WordPress Análisis de Precios Unitarios

- 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>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,139 @@
/**
* Advanced Ads.
*
* @author Thomas Maier <support@wpadvancedads.com>
* @license GPL-2.0+
* @link https://wpadvancedads.com
* @copyright 2013-2018 Thomas Maier, Advanced Ads GmbH
*/
;(function($){
/**
* Print Google AdSense account alerts after connecting to the API or after removing an alert.
*
* @param alerts
*/
function printAlerts( alerts ) {
var $div = $( '#mapi-account-alerts' );
$div.empty();
if ( alerts.length ) {
$div.append( $( '<h3 />' ).html( AdsenseMAPI.alertsHeadingMsg ) );
for ( var id in alerts.alerts ) {
var $alertBox = $( '<div class="card advads-notice-block advads-error"/>' );
var $dismissButton = $( ' <button type="button" class="mapi-dismiss-alert notice-dismiss" data-id="' + alerts.alerts[id]['id'] + '"><span class="screen-reader-text">' + AdsenseMAPI.alertsDismissMsg + '</span></button>' );
var msg = alerts.alerts[id].message;
if ( typeof AdsenseMAPI.alertsMsg[alerts.alerts[id]['id']] !== 'undefined' ) {
msg = AdsenseMAPI.alertsMsg[alerts.alerts[id]['id']];
}
$alertBox.append( $dismissButton );
$alertBox.append( msg );
$div.append( $alertBox );
}
}
}
$( document ).on( 'click', '.preventDefault', function( ev ) {
ev.preventDefault();
} );
$( document ).on( 'keypress', '#adsense input[type="text"]', function( ev ) {
if ( $( this ).hasClass( 'preventDefault' ) ) {
ev.preventDefault();
return;
}
if ( ev.which == 13 || ev.keyCode == 13 ) {
$( '#adsense .advads-settings-tab-main-form #submit' ).trigger( 'click' );
}
} );
$( document ).on( 'click', '#revoke-token', function(){
$( '#gadsense-freeze-all' ).css( 'display', 'block' );
var ID = $( '#adsense-id' ).val();
$.ajax({
url: ajaxurl,
type: 'post',
data: {
action: 'advads-mapi-revoke-token',
adsenseId: ID,
nonce: AdsenseMAPI.nonce,
},
success:function(response, status, XHR){
window.location.reload();
},
error:function(request, status, error){
$( '#gadsense-freeze-all' ).css( 'display', 'none' );
},
});
} );
$( document ).on( 'click', '#adsense-manual-config', function(){
$( '#adsense .form-table tr' ).css( 'display', 'table-row' );
$( '#adsense #auto-adsense-settings-div' ).css( 'display', 'none' );
$( '#adsense #full-adsense-settings-div' ).css( 'display', 'block' );
$( '#adsense-id' ).after( $( '#connect-adsense' ) );
$( '#adsense #submit' ).parent().show();
} );
// Open the code confirmation modal.
$( document ).on( 'click', '#connect-adsense', function(){
if ( $( this ).hasClass( 'disabled' ) ) return;
if ( 'undefined' != typeof window.advadsMapiConnect ) {
window.advadsMapiConnect( 'open-google' );
}
} );
$( document ).on( 'click', '.mapi-dismiss-alert', function( ev ) {
ev.preventDefault();
var pubId = $( '#adsense-id' ).val();
var alertId = $( this ).attr( 'data-id' );
$( '#gadsense-modal' ).css( 'display', 'block' );
$( '#gadsense-modal-outer' ).css( 'display', 'none' );
$.ajax({
url: ajaxurl,
type: 'post',
data: {
action: 'advads-mapi-dismiss-alert',
account: pubId,
id: alertId,
nonce: AdsenseMAPI.nonce,
},
success:function(response, status, XHR){
if ( 'undefined' != typeof response.alerts ) {
printAlerts( response );
}
$( '#gadsense-modal' ).css( 'display', 'none' );
$( '#gadsense-modal-outer' ).css( 'display', 'block' );
},
error:function(request, status, error){
$( '#gadsense-modal' ).css( 'display', 'none' );
$( '#gadsense-modal-outer' ).css( 'display', 'block' );
},
});
} );
$( document ).on( 'click', '.mapi-create-ads-txt', function( ev ) {
ev.preventDefault();
var top = jQuery( '#advads-ads-txt-wrapper' ).offset().top;
window.scrollTo( 0, top );
} );
$( document ).on( 'advadsMapiRefreshAlerts', function ( ev, response ) {
if ( 'undefined' != typeof response.status && response.status && response.alerts ) {
printAlerts( response );
}
} );
$( function(){
if ( $( '#adsense-id' ).val().trim() === '' ) {
$( '#adsense #submit' ).parent().css( 'display', 'none' );
}
} );
})(window.jQuery);