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
4 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
account-status-create-simple.php
38 lines
| 1 | <div class="tiny-account-status" id="tiny-account-status" data-state="missing"> |
| 2 | <div class="update"> |
| 3 | <h4><?php esc_html_e( 'Configure your account', 'tiny-compress-images' ); ?></h4> |
| 4 | <p class="introduction"> |
| 5 | <?php |
| 6 | $link = sprintf( |
| 7 | '<a href="https://tinypng.com/developers" target="_blank">%s</a>', |
| 8 | esc_html__( 'TinyPNG developer section', 'tiny-compress-images' ) |
| 9 | ); |
| 10 | |
| 11 | esc_html_e( 'Enter your API key.', 'tiny-compress-images' ); |
| 12 | echo ' '; |
| 13 | |
| 14 | printf( |
| 15 | /* translators: %s: link saying TinyPNG developer section */ |
| 16 | esc_html__( |
| 17 | 'If needed you can go to the %s to retrieve it.', |
| 18 | 'tiny-compress-images' |
| 19 | ), |
| 20 | $link |
| 21 | ); |
| 22 | ?> |
| 23 | </p> |
| 24 | |
| 25 | <input type="text" id="tinypng_api_key" |
| 26 | name="tinypng_api_key" size="35" spellcheck="false" |
| 27 | value="<?php echo esc_attr( $key ); ?>"> |
| 28 | |
| 29 | <button class="button button-primary" data-tiny-action="update-key"> |
| 30 | <?php |
| 31 | esc_html_e( 'Save', 'tiny-compress-images' ); |
| 32 | ?> |
| 33 | </button> |
| 34 | |
| 35 | <p class="message"></p> |
| 36 | </div> |
| 37 | </div> |
| 38 |