| Server IP : 198.244.165.102 / Your IP : 216.73.216.218 [ Web Server : nginx/1.24.0 System : Linux modovh-ub-01 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : colleary ( 1011) PHP Version : 8.3.23 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/mariweddingflowers/public_html/wp-content/plugins/googleanalytics/view/ |
Upload File : |
<?php /** * Debug Modal view. * * @package GoogleAnalytics */ $sdb = filter_input( INPUT_GET, 'sdb', FILTER_UNSAFE_RAW ); $debug_info = isset( $debug_info ) ? $debug_info : array(); $show_modal = false === empty( $sdb ) ? 'style=display:block;' : ''; ?> <div id="ga_debug_modal" class="ga-modal" tabindex="-1" <?php echo esc_attr( $show_modal ); ?>> <div class="ga-modal-dialog"> <div id="ga_debug_modal_content" class="ga-modal-content"> <div class="ga-modal-header"> <h4 class="ga-modal-title"><?php echo esc_html( 'Debug helper:' ); ?></h4> <span id="ga_close" class="ga-close">×</span> </div> <div class="ga-modal-body"> <div class="ga-loader-wrapper"> <div class="ga-loader"></div> </div> <div class="ga-debug-form-div"> <?php if ( is_array( $debug_info ) ) : ?> <?php echo wp_kses_post( $debug_info['message'] ); ?> <?php else : ?> <h4 class="ga-modal-title"><?php echo esc_html( 'Copy and paste this debug info into an email and send to support@sharethis.com' ); ?></h4> <label for="ga_debug_info" class="ga-debug-form-label"><strong><?php echo esc_html( 'Debug info' ); ?></strong>:</label> <textarea id="ga_debug_info" class="ga-debug-form-field" rows="8" cols="50"><?php echo esc_html( $debug_info ); ?></textarea> <div class="ga-modal-footer"> <button type="button" id="copy-debug" class="button"> <?php esc_html_e( 'Copy', 'google-analytics' ); ?> </button> <button id="ga_btn_close" type="button" class="button">Close</button> </div> <?php endif; ?> </div> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal -->