account-status-connected.php
5 months ago
account-status-create-advanced.php
5 months ago
account-status-create-simple.php
5 months ago
account-status-loading.php
3 years ago
bulk-optimization-form.php
5 months ago
bulk-optimization-upgrade-notice.php
5 months ago
bulk-optimization.php
2 months ago
compress-details-processing.php
5 months ago
compress-details.php
5 months ago
dashboard-widget.php
2 months ago
notice-feedback.php
2 months ago
optimization-chart.php
5 months ago
request-review.php
2 months ago
settings-conversion-delivery.php
2 months ago
settings-conversion-enabled.php
2 months ago
settings-conversion-output.php
2 months ago
settings-conversion.php
2 months ago
settings-diagnostics.php
5 months ago
settings-original-image-original.php
2 months ago
settings-original-image-preserve.php
2 months ago
settings-original-image.php
2 months ago
settings.php
2 months ago
settings-diagnostics.php
30 lines
| 1 | <?php |
| 2 | $tiny_logging_formfield_id = self::get_prefixed_name( 'enable_logging' ); |
| 3 | $tiny_logging_formfield_name = self::get_prefixed_name( 'logging_enabled' ); |
| 4 | $tiny_logging_value = get_option( $tiny_logging_formfield_name ); |
| 5 | ?> |
| 6 | <table class="form-table tinify-settings"> |
| 7 | <tbody> |
| 8 | <tr> |
| 9 | <th><?php esc_html_e( 'Troubleshooting', 'tiny-compress-images' ); ?></th> |
| 10 | <td> |
| 11 | <p class="intro"> |
| 12 | <?php esc_html_e( 'Whenever you run into issues, we can help faster if we can see what is happening. Please enable logging for a short period, reproduce the problem, then send us a message at support@tinify.com with the diagnostics file attached.', 'tiny-compress-images' ); ?> |
| 13 | </p> |
| 14 | <p class="tiny-check"> |
| 15 | <input type="checkbox" name="<?php echo esc_attr( $tiny_logging_formfield_name ); ?>" id="<?php echo esc_attr( $tiny_logging_formfield_id ); ?>" <?php checked( $tiny_logging_value, 'on', true ); ?>> |
| 16 | <label for="<?php echo esc_attr( $tiny_logging_formfield_id ); ?>"> |
| 17 | <?php esc_html_e( 'Enable logging', 'tiny-compress-images' ); ?> |
| 18 | </label> |
| 19 | </p> |
| 20 | <div class="tiny-d-flex tiny-mt-2"> |
| 21 | <button class="button" type="button" id="tiny-download-diagnostics"> |
| 22 | <?php esc_html_e( 'Download Diagnostics', 'tiny-compress-images' ); ?> |
| 23 | </button> |
| 24 | <div id="download-diagnostics-spinner" class="hidden spinner inline"></div> |
| 25 | </div> |
| 26 | </td> |
| 27 | </tr> |
| 28 | </tbody> |
| 29 | </table> |
| 30 |