HEX
Server: Apache
System: Linux vps-cdc32557.vps.ovh.ca 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
User: hanode (1017)
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: /home/hanode/public_html/wp-content/plugins/ml-slider/admin/views/slides/tabs/seo.php
<?php if (!defined('ABSPATH')) {
die('No direct access.');
} ?>
<div class="row mb-2 can-inherit title<?php echo esc_attr($inherit_image_title_class); ?>">
    <div class="mb-1 image-title-label">
        <label>
            <?php esc_html_e("Image Title Text", "ml-slider"); ?>
            <span class="dashicons dashicons-info tipsy-tooltip-top" title="<?php esc_attr_e('Visitors will see this text if they hover over your image slide. Adding Title text is useful but not required.', 'ml-slider') ?>"></span>
        </label>
        <div class="input-label right">
            <label class="small" title="<?php esc_attr_e("Enable this to inherit the image title", "ml-slider"); ?>">
                <?php 
                esc_html_e( 'Use the image title', 'ml-slider' ); 
                echo $this->switch_button( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    'attachment[' . esc_attr( $slide_id ) . '][inherit_image_title]',
                    $inherit_image_title_check, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    array(
                        'autocomplete' => 'off',
                        'class' => 'js-inherit-from-image' 
                    ),
                    'mr-0 ml-1'
                );
                ?> 
            </label>
        </div>
    </div>
    <div class="default"><?php echo $image_title ? esc_html($image_title) : "<span class='no-content'>&nbsp;</span>"; ?></div>
    <input tabindex="0" type="text" size="50" name="attachment[<?php echo esc_attr($slide_id); ?>][title]" value="<?php echo esc_attr($title); ?>">
</div>
<div class="row can-inherit alt<?php echo esc_attr($inherit_image_alt_class); ?>">
    <div class="mb-1 image-alt-label">
        <label>
            <?php esc_html_e("Image Alt Text", "ml-slider"); ?>
            <span class="dashicons dashicons-info tipsy-tooltip-top" title="<?php esc_attr_e('This text is used by search engines and visitors using screen readers. Adding Alt text is highly recommended.', 'ml-slider') ?>"></span>
        </label>
        <div class="input-label right">
            <label class="small" title="<?php esc_attr_e('Enable this to inherit the image alt text', 'ml-slider'); ?>">
                <?php 
                esc_html_e( 'Use the image alt text', 'ml-slider' ); 
                ?> <?php 
                echo $this->switch_button( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    'attachment[' . esc_attr( $slide_id ) . '][inherit_image_alt]', 
                    $inherit_image_alt_check, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                    array(
                        'autocomplete' => 'off',
                        'class' => 'js-inherit-from-image' 
                    ),
                    'mr-0 ml-1'
                );
                ?> 
            </label>
        </div>
    </div>
    <div class="default"><?php echo $image_alt ? esc_html($image_alt) : "<span class='no-content'>&nbsp;</span>"; ?></div>
    <input tabindex="0" type="text" size="50" name="attachment[<?php echo esc_attr($slide_id); ?>][alt]" value="<?php echo esc_attr($alt); ?>">
</div>