| 1 |
<?php |
| 2 |
/** |
| 3 |
* The view to render the option. |
| 4 |
* |
| 5 |
* @package AdvancedAds |
| 6 |
* @author Advanced Ads <info@wpadvancedads.com> |
| 7 |
* @since 1.48.2 |
| 8 |
* |
| 9 |
* @var boolean $enabled Value of 1, when the option is checked. |
| 10 |
*/ |
| 11 |
|
| 12 |
?> |
| 13 |
<label> |
| 14 |
<input type="checkbox" value="1" name="<?php echo esc_attr( ADVADS_SLUG ); ?>[uninstall-delete-data]" <?php checked( $enabled, 1 ); ?>> |
| 15 |
<?php esc_html_e( 'Clean up all data related to Advanced Ads when removing the plugin.', 'advanced-ads' ); ?> |
| 16 |
</label> |
| 17 |
<?php |
| 18 |
|