ga_accounts_selector.php
9 years ago
ga_auth_button.php
9 years ago
ga_code.php
9 years ago
ga_dashboard_widget.php
9 years ago
ga_debug_modal.php
9 years ago
ga_googleanalytics_loader.php
9 years ago
ga_notice.php
9 years ago
ga_oauth_notice.php
9 years ago
ga_wp_notice.php
9 years ago
page.php
9 years ago
statistics.php
9 years ago
stats.php
9 years ago
trending.php
9 years ago
ga_debug_modal.php
35 lines
| 1 | <div id="ga_debug_modal" class="ga-modal" tabindex="-1"> |
| 2 | <div class="ga-modal-dialog"> |
| 3 | <div id="ga_debug_modal_content" class="ga-modal-content"> |
| 4 | <div class="ga-modal-header"> |
| 5 | <span id="ga_close" class="ga-close">×</span> |
| 6 | <h4 class="ga-modal-title"><?php _e( 'Please send debug info:' ) ?></h4> |
| 7 | </div> |
| 8 | <div class="ga-modal-body"> |
| 9 | <div id="ga_debug_error" class="ga-alert ga-alert-danger" style="display: none;"></div> |
| 10 | <div id="ga_debug_success" class="ga-alert ga-alert-success" style="display: none;"></div> |
| 11 | <div class="ga-loader-wrapper"> |
| 12 | <div class="ga-loader"></div> |
| 13 | </div> |
| 14 | <div class="ga-debug-form-div"> |
| 15 | <label for="ga_debug_email" class="ga-debug-form-label"><strong><?php _e( 'Your Email' ); ?></strong>:</label> |
| 16 | <input id="ga_debug_email" class="ga-debug-form-field" type="text" placeholder="<?php _e( 'Type your email here' ) ?>"/> |
| 17 | </div> |
| 18 | <div class="ga-debug-form-div"> |
| 19 | <label id="ga_debug_description_label" for="ga_debug_description" class="ga-debug-form-label"><strong><?php _e( 'Description of the issue' ); ?></strong>:</label> |
| 20 | <textarea id="ga_debug_description" class="ga-debug-form-field" rows="4" cols="50"></textarea> |
| 21 | </div> |
| 22 | <div class="ga-debug-form-div"> |
| 23 | <label for="ga_debug_info" class="ga-debug-form-label"><strong><?php _e( 'Debug info' ); ?></strong>:</label> |
| 24 | <textarea id="ga_debug_info" class="ga-debug-form-field" rows="8" cols="50"><?php echo $debug_info ?></textarea> |
| 25 | </div> |
| 26 | </div> |
| 27 | <div class="ga-modal-footer"> |
| 28 | <button id="ga_btn_close" type="button" class="button">Close</button> |
| 29 | <button type="button" class="button-primary" |
| 30 | id="ga-send-debug-email" |
| 31 | onclick="ga_debug.send_email( event )"><?php _e( 'Send' ); ?></button> |
| 32 | </div> |
| 33 | </div><!-- /.modal-content --> |
| 34 | </div><!-- /.modal-dialog --> |
| 35 | </div><!-- /.modal --> |