| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/lauvia/wp-content/plugins/woo-stripe-payment/src/ |
Upload File : |
<?php
namespace PaymentPlugins\Stripe;
class PluginValidation {
public static function is_valid( $callback ) {
try {
self::assert_php_version();
$callback();
} catch ( \Exception $e ) {
self::add_admin_notice( $e->getMessage() );
}
}
private static function assert_php_version() {
if ( version_compare( PHP_VERSION, '5.6', '<' ) ) {
throw new \Exception( sprintf( __( 'Your PHP version is %s but Stripe requires version 5.6+.', 'woo-stripe-payment' ), PHP_VERSION ) );
}
}
private static function add_admin_notice( $msg ) {
add_action( 'admin_notices', function () use ( $msg ) {
?>
<div class="notice notice-error woocommerce-message">
<h4>
<?php echo $msg ?>
</h4>
</div>
<?php
} );
}
}