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,28 @@
<?php
/**
* Refresh interval setting
*
* @var bool $cb_module_enabled Cache-busting module enabled.
* @var Group $group The current group.
* @var bool $enabled Refresh interval enabled.
* @var int $interval Refresh interval in milliseconds.
* @var bool $show_warning Show warning about placement.
*/
?>
<fieldset <?php if ( ! $cb_module_enabled ) { echo 'style="display:none;"'; } ?>>
<label><input type="checkbox" name="advads-groups[<?php echo esc_attr( $group->get_id() ); ?>][options][refresh][enabled]" value="1" <?php checked( $enabled, 1 ); ?>><?php esc_html_e( 'Enabled', 'advanced-ads-pro' ); ?></label>
<br>
<label><input type="number" min="1" required="required" name="advads-groups[<?php echo esc_attr( $group->get_id() ); ?>][options][refresh][interval]" value="<?php echo esc_attr( $interval ); ?>"> <?php esc_html_e( 'milliseconds', 'advanced-ads-pro' ); ?></label>
</fieldset>
<p class="description">
<?php esc_html_e( 'Refresh ads on the same spot. Works when cache-busting is used.', 'advanced-ads-pro' ); ?>
<?php if ( ! $cb_module_enabled ) : ?>
<a href="<?php echo esc_url( admin_url( 'admin.php?page=advanced-ads-settings#top#pro' ) ); ?>">(<?php esc_html_e( 'Activate now', 'advanced-ads-pro' ); ?>)</a>
<?php endif; ?>
<a href="https://wpadvancedads.com/refresh-ads-on-the-same-spot/?utm_source=advanced-ads&utm_medium=link&utm_campaign=groups-refresh-manual'; ?>" target="_blank" class="advads-manual-link"><?php esc_html_e( 'Manual', 'advanced-ads-pro' ); ?></a>
</p>
<?php if ( $show_warning ) : ?>
<p class="advads-notice-inline advads-error"><?php esc_html_e( 'Please use a placement to deliver this group using cache-busting.', 'advanced-ads-pro' ); ?></p>
<?php endif; ?>