Files
roi-theme/wp-content/plugins/advanced-ads/views/admin/page-bulk-edit.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

48 lines
1.5 KiB
PHP
Executable File

<?php
/**
* Page/Post bulk edit fields
*
* @package AdvancedAds
* @author Advanced Ads <info@wpadvancedads.com>
* @since 2.0
*/
use AdvancedAds\Admin\Upgrades;
?>
<fieldset class="inline-edit-col-right">
<table class="advads-bulk-edit-fields">
<tr>
<td>
<span class="title"><?php esc_html_e( 'Disable ads', 'advanced-ads' ); ?></span></td>
<td>
<label>
<select name="advads_disable_ads">
<option value="">— <?php esc_html_e( 'No Change', 'advanced-ads' ); ?> —</option>
<option value="on"><?php esc_html_e( 'Disable', 'advanced-ads' ); ?></option>
<option value="off"><?php esc_html_e( 'Allow', 'advanced-ads' ); ?></option>
</select>
</label>
</td>
</tr>
<tr>
<td>
<span class="title"><?php esc_html_e( 'Disable injection into the content', 'advanced-ads' ); ?></span></td>
<td>
<label>
<select name="advads_disable_the_content" <?php echo defined( 'AAP_VERSION' ) ? null : 'disabled'; ?>>
<option value="">— <?php esc_html_e( 'No Change', 'advanced-ads' ); ?> —</option>
<option value="on"><?php esc_html_e( 'Disable', 'advanced-ads' ); ?></option>
<option value="off"><?php esc_html_e( 'Allow', 'advanced-ads' ); ?></option>
</select>
<?php
if ( ! defined( 'AAP_VERSION' ) ) {
Upgrades::upgrade_link( '', 'https://wpadvancedads.com/advanced-ads-pro/', 'upgrade-pro-disable-post-quick-edit' );
}
?>
</label>
</td>
</tr>
</table>
</fieldset>