PluginProbe
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF / 2.2.2
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF v2.2.2
2.3.4 2.3.3 2.3.2 2.3.1 2.3.0 2.2.9 2.2.8 trunk 1.10 1.3.3 1.3.4 1.3.5 1.3.5.1 1.3.5.2 1.3.6 1.3.6.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.5 All 103 releases
imagify / views / notice-rating.php

notice-rating.php in Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF 2.2.2, at views/notice-rating.php

37 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' );
3
4 $this->print_template( 'notice-header', array(
5 'classes' => array( 'updated' ),
6 ) );
7 ?>
8 <p>
9 <?php
10 printf(
11 /* translators: 1 is a "bold" tag start, 2 is the "bold" tag end, 3 is a formatted number (don't use %3$d). */
12 __( '%1$sCongratulations%2$s, you have optimized %1$s%3$s images%2$s and improved your website\'s speed by reducing your images size.', 'imagify' ),
13 '<strong>',
14 '</strong>',
15 number_format_i18n( $data )
16 );
17 ?>
18 </p>
19 <p class="imagify-rate-us">
20 <?php
21 printf(
22 /* translators: 1 is a "bold" tag start, 2 is the "bold" tag end + a line break tag, 3 is a link tag start, 4 is the link tag end. */
23 __( '%1$sDo you like this plugin?%2$s Please take a few seconds to %3$srate it on WordPress.org%4$s!', 'imagify' ),
24 '<strong>',
25 '</strong><br />',
26 '<a target="_blank" href="' . esc_url( imagify_get_external_url( 'rate' ) ) . '">',
27 '</a>'
28 );
29 ?>
30 <br>
31 <a class="stars" target="_blank" href="<?php echo esc_url( imagify_get_external_url( 'rate' ) ); ?>">☆☆☆☆☆</a>
32 </p>
33 <?php
34 $this->print_template( 'notice-footer', array(
35 'dismissible' => 'rating',
36 ) );
37