HEX
Server: LiteSpeed
System: Linux l24.yourwebhosting.net 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: turkishi (1582)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/navz-photo-gallery/includes/v4/create_options.php
<?php

    // exit if accessed directly
    if( ! defined( 'ABSPATH' ) ) exit;

    $field = array_merge($this->defaults, $field);
    $key = esc_attr($field['name']);
?>
<tr class="field_option field_option_<?php echo esc_attr($this->name); ?>">
    <td class="label">
        <label><?php _e("Edit modal",'acf'); ?></label>
        <p class="description"><?php _e("Native lets you delete permanently or select another, but is heavier",'acf'); ?></p>
    </td>
    <td>
    <?php
        do_action('acf/create_field', array(
            'type' => 'select',
            'name' => 'fields['.$key.'][edit_modal]',
            'value' => $field['edit_modal'],
            'choices' => array('Default' => 'Default', 'Native' => 'Native')
        ));
    ?>
    </td>
</tr>