account-status-connected.php
8 years ago
account-status-create-advanced.php
8 years ago
account-status-create-simple.php
8 years ago
account-status-loading.php
9 years ago
bulk-optimization-chart.php
9 years ago
bulk-optimization-form.php
8 years ago
bulk-optimization.php
8 years ago
compress-details-processing.php
8 years ago
compress-details.php
8 years ago
dashboard-widget.php
8 years ago
settings.php
8 years ago
settings.php
54 lines
| 1 | <div class="wrap"> |
| 2 | <h1><?php esc_html_e( 'Compress JPEG & PNG images', 'tiny-compress-images' ) ?></h2> |
| 3 | <p><?php esc_html_e( 'Speed up your website. Optimize your JPEG and PNG images automatically with TinyPNG.', 'tiny-compress-images' ) ?></p> |
| 4 | |
| 5 | <div class="tiny-compress-images"> |
| 6 | <span id="tiny-compress-images"></span> |
| 7 | <form action="<?php echo esc_url( admin_url( 'options.php' ) ); ?>" id="tinify-settings" method="post"> |
| 8 | <?php settings_fields( 'tinify' ) ?> |
| 9 | <table class="form-table tinify-settings"> |
| 10 | <tbody> |
| 11 | <tr> |
| 12 | <th scope="row"><?php esc_html_e( 'Tinify account', 'tiny-compress-images' ) ?></th> |
| 13 | <td> |
| 14 | <?php $this->render_pending_status() ?> |
| 15 | </td> |
| 16 | </tr> |
| 17 | <tr> |
| 18 | <th scope="row"><?php esc_html_e( 'New image uploads', 'tiny-compress-images' ) ?></th> |
| 19 | <td> |
| 20 | <?php $this->render_compression_timing_settings() ?> |
| 21 | </td> |
| 22 | </tr> |
| 23 | <tr> |
| 24 | <th scope="row"><?php esc_html_e( 'Image sizes', 'tiny-compress-images' ) ?></th> |
| 25 | <td> |
| 26 | <h4><?php esc_html_e( 'Select image sizes to be compressed', 'tiny-compress-images' ) ?></h4> |
| 27 | <p class="intro"> |
| 28 | <?php |
| 29 | esc_html_e( |
| 30 | 'Wordpress generates resized versions of every image. Choose which sizes to compress.', |
| 31 | 'tiny-compress-images' |
| 32 | ) |
| 33 | ?> |
| 34 | </p> |
| 35 | <div class="sizes"> |
| 36 | <?php $this->render_sizes() ?> |
| 37 | </div> |
| 38 | </td> |
| 39 | </tr> |
| 40 | <tr> |
| 41 | <th scope="row"><?php esc_html_e( 'Original image', 'tiny-compress-images' ) ?></th> |
| 42 | <td> |
| 43 | <?php $this->render_resize() ?> |
| 44 | </td> |
| 45 | </tr> |
| 46 | </tbody> |
| 47 | </table> |
| 48 | <p class="submit"> |
| 49 | <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php esc_html_e( 'Save Changes' ) ?>"> |
| 50 | </p> |
| 51 | </form> |
| 52 | </div> |
| 53 | </div> |
| 54 |