templates
2 months ago
ga-accounts-selector.php
2 months ago
ga-auth-button.php
2 months ago
ga-code.php
2 months ago
ga-dashboard-widget.php
2 months ago
ga-debug-modal.php
2 months ago
ga-ga4-settings.php
2 months ago
ga-googleanalytics-loader.php
2 months ago
ga-notice.php
2 months ago
ga-oauth-notice.php
2 months ago
ga-wp-notice.php
2 months ago
old-page.php
2 months ago
page.php
2 months ago
statistics.php
2 months ago
stats.php
2 months ago
trending.php
2 months ago
ga-debug-modal.php
53 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Debug Modal view. |
| 4 | * |
| 5 | * @package GoogleAnalytics |
| 6 | */ |
| 7 | |
| 8 | if (!defined('ABSPATH')) exit; |
| 9 | |
| 10 | $sdb = filter_input( INPUT_GET, 'sdb', FILTER_UNSAFE_RAW ); |
| 11 | |
| 12 | $debug_info = isset( $debug_info ) ? $debug_info : array(); |
| 13 | $show_modal = false === empty( $sdb ) ? 'style=display:block;' : ''; |
| 14 | ?> |
| 15 | |
| 16 | <div id="ga_debug_modal" class="ga-modal" tabindex="-1" <?php echo esc_attr( $show_modal ); ?>> |
| 17 | <div class="ga-modal-dialog"> |
| 18 | <div id="ga_debug_modal_content" class="ga-modal-content"> |
| 19 | <div class="ga-modal-header"> |
| 20 | <h4 class="ga-modal-title"><?php echo esc_html( 'Debug helper:' ); ?></h4> |
| 21 | <span id="ga_close" class="ga-close">×</span> |
| 22 | </div> |
| 23 | <div class="ga-modal-body"> |
| 24 | <div class="ga-loader-wrapper"> |
| 25 | <div class="ga-loader"></div> |
| 26 | </div> |
| 27 | <div class="ga-debug-form-div"> |
| 28 | <?php if ( is_array( $debug_info ) ) : ?> |
| 29 | <?php echo wp_kses_post( $debug_info['message'] ); ?> |
| 30 | <?php else : ?> |
| 31 | <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> |
| 32 | <label for="ga_debug_info" |
| 33 | class="ga-debug-form-label"><strong><?php echo esc_html( 'Debug info' ); ?></strong>:</label> |
| 34 | <textarea id="ga_debug_info" class="ga-debug-form-field" rows="8" |
| 35 | cols="50"><?php echo esc_html( $debug_info ); ?></textarea> |
| 36 | <div class="ga-modal-footer"> |
| 37 | <button type="button" id="copy-debug" class="button"> |
| 38 | <?php |
| 39 | esc_html_e( |
| 40 | 'Copy', |
| 41 | 'googleanalytics' |
| 42 | ); |
| 43 | ?> |
| 44 | </button> |
| 45 | <button id="ga_btn_close" type="button" class="button">Close</button> |
| 46 | </div> |
| 47 | <?php endif; ?> |
| 48 | </div> |
| 49 | </div> |
| 50 | </div><!-- /.modal-content --> |
| 51 | </div><!-- /.modal-dialog --> |
| 52 | </div><!-- /.modal --> |
| 53 |