Files
roi-theme/wp-content/plugins/advanced-ads-pro/modules/group-refresh/views/settings_group_refresh.php
root a22573bf0b 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>
2025-11-03 21:04:30 -06:00

29 lines
1.7 KiB
PHP
Executable File

<?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; ?>