PluginProbe ʕ •ᴥ•ʔ
TinyPNG – JPEG, PNG & WebP image compression / 3.6.2
TinyPNG – JPEG, PNG & WebP image compression v3.6.2
3.8.0 3.7.0 3.6.14 trunk 1.0.0 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.4.0 1.5.0 1.6.0 1.7.0 1.7.1 1.7.2 2.0.0 2.0.1 2.0.2 2.1.0 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 3.0.0 3.0.1 3.1.0 3.2.0 3.2.1 3.3 3.4 3.4.1 3.4.2 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.5.2 3.6.0 3.6.1 3.6.10 3.6.11 3.6.12 3.6.13 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.6.9
tiny-compress-images / src / views / settings.php
tiny-compress-images / src / views Last commit date
account-status-connected.php 11 months ago account-status-create-advanced.php 11 months ago account-status-create-simple.php 4 years ago account-status-loading.php 4 years ago bulk-optimization-form.php 1 year ago bulk-optimization-upgrade-notice.php 4 years ago bulk-optimization.php 1 year ago compress-details-processing.php 4 years ago compress-details.php 11 months ago dashboard-widget.php 1 year ago optimization-chart.php 4 years ago settings.php 11 months ago
settings.php
69 lines
1 <div class="wrap">
2 <h1><?php esc_html_e( 'TinyPNG - JPEG, PNG & WebP image compression', 'tiny-compress-images' ) ?></h2>
3 <p><?php esc_html_e( 'Speed up your website. Optimize your JPEG, PNG, and WebP images automatically with TinyPNG.', 'tiny-compress-images' ) ?></p>
4 <div class="tiny-compress-images">
5 <span id="tiny-compress-images"></span>
6 <form action="<?php echo esc_url( admin_url( 'options.php' ) ); ?>" id="tinify-settings" method="post">
7 <?php settings_fields( 'tinify' ) ?>
8 <table class="form-table tinify-settings">
9 <tbody>
10 <tr>
11 <th scope="row"><?php esc_html_e( 'Tinify account', 'tiny-compress-images' ) ?></th>
12 <td>
13 <?php $this->render_pending_status() ?>
14 </td>
15 </tr>
16 <tr>
17 <th scope="row"><?php esc_html_e( 'New image uploads', 'tiny-compress-images' ) ?></th>
18 <td>
19 <?php $this->render_compression_timing_settings() ?>
20 </td>
21 </tr>
22 <tr>
23 <th scope="row"><?php esc_html_e( 'Image sizes', 'tiny-compress-images' ) ?></th>
24 <td>
25 <h4><?php esc_html_e( 'Select image sizes to be compressed', 'tiny-compress-images' ) ?></h4>
26 <p class="intro">
27 <?php
28 esc_html_e(
29 'Wordpress generates resized versions of every image. Choose which sizes to compress.',
30 'tiny-compress-images'
31 )
32 ?>
33 </p>
34 <div class="sizes">
35 <?php $this->render_sizes() ?>
36 </div>
37 </td>
38 </tr>
39 <tr>
40 <th scope="row"><?php esc_html_e( 'Conversion', 'tiny-compress-images' ) ?></th>
41 <td>
42 <h4><?php esc_html_e( 'Convert files to different formats', 'tiny-compress-images' ) ?></h4>
43 <p class="intro">
44 <?php
45 esc_html_e(
46 'Generate optimized formats like WebP or AVIF. These file types will improve site performance but might take up more disk space. Creating an optimized image will take 1 additional compression for each image size.',
47 'tiny-compress-images'
48 )
49 ?>
50 </p>
51 <?php $this->render_format_conversion(); ?>
52 </td>
53 </tr>
54 <tr>
55 <th scope="row"><?php esc_html_e( 'Original image', 'tiny-compress-images' ) ?></th>
56 <td>
57 <?php $this->render_resize() ?>
58 </td>
59 </tr>
60 </tbody>
61 </table>
62 <p><?php echo Tiny_Plugin::request_review();?></p>
63 <p class="submit">
64 <input type="submit" name="submit" id="submit" class="button button-primary" value="<?php esc_html_e( 'Save Changes', 'tiny-compress-images' ) ?>">
65 </p>
66 </form>
67 </div>
68 </div>
69