PluginProbe
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF / 1.9.8
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF v1.9.8
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-wrong-api-key.php

notice-wrong-api-key.php in Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF 1.9.8, at views/notice-wrong-api-key.php

25 lines 834 B
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 'title' => __( 'Your API key isn\'t valid!', 'imagify' ),
6 'classes' => array( 'error' ),
7 ) );
8 ?>
9 <p>
10 <?php wp_nonce_field( 'imagify-signup', 'imagifysignupnonce', false ); ?>
11 <?php
12 printf(
13 /* translators: 1 and 2 are link tag starts, 3 is a link tag end. */
14 __( 'Go to your Imagify account page to get your API Key and specify it on %1$syour settings%3$s or %2$screate an account for free%3$s if you don\'t have one yet.', 'imagify' ),
15 '<a href="' . esc_url( get_imagify_admin_url() ) . '">',
16 '<a id="imagify-signup" target="_blank" href="' . esc_url( imagify_get_external_url( 'register' ) ) . '">',
17 '</a>'
18 );
19 ?>
20 </p>
21 <?php
22 $this->print_template( 'notice-footer', array(
23 'dismissible' => 'wrong-api-key',
24 ) );
25