HEX
Server: Apache
System: Linux server11 5.10.0-33-amd64 #1 SMP Debian 5.10.226-1 (2024-10-03) x86_64
User: web95 (5097)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/clients/client1/web95/web/wp-content/plugins/wpai-acf-add-on/src/fields/views/gallery.php
<div class="input">
    <label><?php _e('Enter image URL one per line, or separate them with a', 'wp_all_import_acf_add_on'); ?> </label>
    <input
        type="text"
        style="width:5%; text-align:center;"
        value="<?php echo (!empty($current_field['delim'])) ? esc_attr( $current_field['delim'] ) : '';?>"
        name="fields<?php echo $field_name;?>[<?php echo $field['key'];?>][delim]"
        class="small rad4">

    <textarea
        placeholder="http://example.com/images/image-1.jpg"
        style="clear: both; display: block; margin-top: 10px;" class="newline rad4"
        name="fields<?php echo $field_name;?>[<?php echo $field['key'];?>][gallery]"><?php echo ( ! is_array($current_field)) ? esc_attr($current_field) : esc_attr( $current_field['gallery'] );?></textarea>

    <div class="input">
        <input
            type="hidden"
            name="fields<?php echo $field_name;?>[<?php echo $field['key'];?>][search_in_media]"
            value="0"/>
        <input
            type="checkbox"
            id="<?php echo $field_name . $field['key'] . '_search_in_media';?>"
            name="fields<?php echo $field_name;?>[<?php echo $field['key'];?>][search_in_media]"
            value="1" <?php echo (!empty($current_field['search_in_media'])) ? 'checked="checked"' : '';?>/>
        <label
            for="<?php echo $field_name . $field['key'] . '_search_in_media';?>">
            <?php _e('Search through the Media Library for existing images before importing new images', 'wp_all_import_acf_add_on'); ?></label>
        <a
            href="#help"
            class="wpallimport-help"
            title="<?php _e('If an image with the same file name is found in the Media Library then that image will be attached to this record instead of importing a new image. Disable this setting if your import has different images with the same file name.', 'wp_all_import_acf_add_on') ?>"
            style="position: relative; top: -2px;">?</a>
    </div>

    <div class="input">
        <input
            type="hidden"
            name="fields<?php echo $field_name;?>[<?php echo $field['key'];?>][search_in_files]"
            value="0"/>
        <input
            type="checkbox"
            id="<?php echo $field_name . $field['key'] . '_search_in_files';?>"
            name="fields<?php echo $field_name;?>[<?php echo $field['key'];?>][search_in_files]"
            value="1" <?php echo (!empty($current_field['search_in_files'])) ? 'checked="checked"' : '';?>/>
        <label
            for="<?php echo $field_name . $field['key'] . '_search_in_files';?>">
            <?php _e('Use images currently uploaded in wp-content/uploads/wpallimport/files/', 'wp_all_import_acf_add_on'); ?></label>
    </div>

    <div class="input">
        <input
            type="checkbox"
            id="<?php echo $field_name . $field['key'] . '_only_append_new';?>"
            name="fields<?php echo $field_name;?>[<?php echo $field['key'];?>][only_append_new]"
            value="1" <?php echo (!empty($current_field['only_append_new'])) ? 'checked="checked"' : '';?>/>

        <label
            for="<?php echo $field_name . $field['key'] . '_only_append_new';?>">
            <?php _e('Append only new images and do not touch existing during updating gallery field.', 'wp_all_import_acf_add_on'); ?></label>
    </div>
</div>