| Server IP : 145.239.37.162 / Your IP : 216.73.217.81 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www2024/wp-content/plugins/pop-up-pluginknock/admin/ |
Upload File : |
<section id="popup_admin">
<h2>Informations à afficher dans la pop-up : </h2>
<form action="" method="post" enctype="multipart/form-data">
<label for="title">Titre :
<input type="text" name="title" id="title" value="<?= stripslashes(get_option('title')); ?>">
</label>
<label for="link">Lien :
<input type="text" name="link" id="link" value="<?= stripslashes(get_option('link')); ?>">
</label>
<label for="text">Texte :
<textarea name="text" id="text"><?= esc_textarea(trim(stripslashes(get_option('text')))); ?></textarea>
</label>
<label for="image">Image : </label>
<?php
$image_id = get_post_meta($object->ID, "meta-box-image", true);
$image = $image_id ? wp_get_attachment_image_src($image_id, 'medium') : '';
?>
<input name="meta-box-image" id="meta-box-image" type="hidden" value="<?php echo $image_id; ?>">
<img id="meta-box-image-preview" src="<?php echo $image ? $image[0] : ''; ?>" style="max-width: 250px; max-height: 250px;">
<button type="button" id="upload-button" class="button">Choisir une image</button>
<button type="button" id="meta-box-image-button-remove" class="button">Supprimer l'image</button>
<!-- Animation settings -->
<fieldset>
<legend>Animation :</legend>
<label for="animation_type">Type d'animation :
<select name="animation_type" id="animation_type">
<option value="fade_in" <?php selected(get_option('animation_type'), 'fade_in'); ?>>fade-in</option>
<option value="slide_in" <?php selected(get_option('animation_type'), 'slide_in'); ?>>slide-in</option>
<option value="zoom_in" <?php selected(get_option('animation_type'), 'zoom_in'); ?>>zoom-in</option>
</select>
</label>
<br>
<label for="animation_duration">Durée d'animation :
<select name="animation_duration" id="animation_duration">
<option value="1-2" <?php selected(get_option('animation_duration'), '1-2'); ?>>0,5s</option>
<option value="1" <?php selected(get_option('animation_duration'), '1'); ?>>1s</option>
<option value="2" <?php selected(get_option('animation_duration'), '2'); ?>>2s</option>
</select>
</label>
</fieldset>
<?php wp_nonce_field('pop_up_save', 'pop_up_nonce'); ?>
<input type="submit" value="Enregistrer">
</form>
</section>