PluginProbe
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF / 2.2
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF v2.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 / part-settings-footer.php

part-settings-footer.php in Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF 2.2, at views/part-settings-footer.php

29 lines 671 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 ?>
5
6 <div class="submit imagify-clearfix">
7 <?php
8 // Classical submit.
9 submit_button();
10
11 if ( Imagify_Requirements::is_api_key_valid() ) {
12 $user_can = imagify_get_context( 'wp' )->current_user_can( 'bulk-optimize' ) || imagify_get_context( 'custom-folders' )->current_user_can( 'bulk-optimize' );
13
14 if ( $user_can ) {
15 // Submit and go to bulk page.
16 submit_button(
17 esc_html__( 'Save & Go to Bulk Optimizer', 'imagify' ),
18 'secondary imagify-button-secondary', // Type/classes.
19 'submit-goto-bulk', // Name (id).
20 true, // Wrap.
21 array() // Other attributes.
22 );
23 }
24 }
25 ?>
26 </div>
27
28 <?php
29