PluginProbe
YayMail – WooCommerce Email Customizer / 4.3.2
YayMail – WooCommerce Email Customizer v4.3.2
4.4.4 4.4.3 4.4.2 4.4.1 trunk 1.9.6 2.1.4 2.1.5 3.2.2 3.2.6 3.2.7.1 3.2.8.1 3.2.9 3.3 3.3.1 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 All 55 releases
yaymail / templates / fallbacks / fallback-minimum-php.php

fallback-minimum-php.php in YayMail – WooCommerce Email Customizer 4.3.2, at templates/fallbacks/fallback-minimum-php.php

24 lines 625 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'ABSPATH' ) || exit;
4
5 add_action(
6 'admin_notices',
7 function() {
8 if ( current_user_can( 'activate_plugins' ) ) {
9 ?>
10 <div class="notice notice-error is-dismissible">
11 <p>
12 <strong>
13 <?php
14 // translators: %1$s: current PHP version,
15 printf( esc_html__( 'YayMail requires PHP 7.2.0 to work and does not support your current PHP version %1$s. Please contact your host and request a PHP upgrade to the latest one.', 'yaymail' ), esc_html( phpversion() ) )
16 ?>
17 </strong>
18 </p>
19 </div>
20 <?php
21 }
22 }
23 );
24