HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/advanced-ads-sticky-ads/admin/views/effects.php
<?php
$effect     = isset( $options['effect'] ) ? $options['effect'] : 'show';
$duration   = isset( $options['duration'] ) ? absint( $options['duration'] ) : 0;

?>
<label><input type="radio" name="<?php echo $option_name; ?>[effect]" value="show" <?php checked( $effect, 'show' ); ?>/><?php _e( 'Show', 'advanced-ads-sticky' ); ?></label>
<label><input type="radio" name="<?php echo $option_name; ?>[effect]" value="fadein" <?php checked( $effect, 'fadein' ); ?>/><?php _e( 'Fade in', 'advanced-ads-sticky' ); ?></label>
<label><input type="radio" name="<?php echo $option_name; ?>[effect]" value="slidedown" <?php checked( $effect, 'slidedown' ); ?>/><?php _e( 'Slide in', 'advanced-ads-sticky' ); ?></label>
<p class="description"><?php _e( 'Type of effect when the ad is being displayed', 'advanced-ads-sticky' ); ?></p>
<br/>
<input type="number" name="<?php echo $option_name; ?>[duration]" value="<?php echo $duration; ?>"/>
<p class="description"><?php _e( 'Duration of the effect (in milliseconds).', 'advanced-ads-sticky' ); ?></p>