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-temporary.php

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

23 lines 568 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 $notices = array();
5
6 foreach ( $data as $notice_data ) {
7 if ( empty( $notices[ $notice_data['type'] ] ) ) {
8 $notices[ $notice_data['type'] ] = array();
9 }
10
11 $notices[ $notice_data['type'] ][] = $notice_data;
12 }
13
14 foreach ( $notices as $type => $type_notices ) {
15 ?>
16 <div class="<?php echo $type; ?> settings-error notice is-dismissible">
17 <?php foreach ( $type_notices as $details ) { ?>
18 <p><strong><?php echo wp_kses( $details['message'], [ 'code' => [] ] ); ?></strong></p>
19 <?php } ?>
20 </div>
21 <?php
22 }
23