account-status-connected.php
2 months ago
account-status-create-advanced.php
2 months ago
account-status-create-simple.php
2 months ago
account-status-loading.php
4 years ago
bulk-optimization-form.php
7 months ago
bulk-optimization-upgrade-notice.php
2 months ago
bulk-optimization.php
2 months ago
compress-details-processing.php
2 months ago
compress-details.php
2 months ago
dashboard-widget.php
2 months ago
notice-feedback.php
2 months ago
optimization-chart.php
2 months ago
request-review.php
4 months ago
settings-conversion-delivery.php
4 months ago
settings-conversion-enabled.php
4 months ago
settings-conversion-output.php
4 months ago
settings-conversion.php
4 months ago
settings-diagnostics.php
7 months ago
settings-original-image-original.php
4 months ago
settings-original-image-preserve.php
4 months ago
settings-original-image.php
2 weeks ago
settings.php
4 months ago
account-status-create-simple.php
44 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Settings form to configure an account |
| 4 | * |
| 5 | * @var string $key |
| 6 | */ |
| 7 | ?> |
| 8 | <div class="tiny-account-status" id="tiny-account-status" data-state="missing"> |
| 9 | <div class="update"> |
| 10 | <h4><?php esc_html_e( 'Configure your account', 'tiny-compress-images' ); ?></h4> |
| 11 | <p class="introduction"> |
| 12 | <?php |
| 13 | $link = sprintf( |
| 14 | '<a href="https://tinypng.com/developers" target="_blank">%s</a>', |
| 15 | esc_html__( 'TinyPNG developer section', 'tiny-compress-images' ) |
| 16 | ); |
| 17 | |
| 18 | esc_html_e( 'Enter your API key.', 'tiny-compress-images' ); |
| 19 | echo ' '; |
| 20 | |
| 21 | echo wp_kses_post( |
| 22 | sprintf( |
| 23 | /* translators: %s: link saying TinyPNG developer section */ |
| 24 | __( 'If needed you can go to the %s to retrieve it.', 'tiny-compress-images' ), |
| 25 | $link |
| 26 | ) |
| 27 | ); |
| 28 | ?> |
| 29 | </p> |
| 30 | |
| 31 | <input type="text" id="tinypng_api_key" |
| 32 | name="tinypng_api_key" size="35" spellcheck="false" |
| 33 | value="<?php echo esc_attr( $key ); ?>"> |
| 34 | |
| 35 | <button class="button button-primary" data-tiny-action="update-key"> |
| 36 | <?php |
| 37 | esc_html_e( 'Save', 'tiny-compress-images' ); |
| 38 | ?> |
| 39 | </button> |
| 40 | |
| 41 | <p class="message"></p> |
| 42 | </div> |
| 43 | </div> |
| 44 |