MP_Addon_Payoff_Elementor::admin_notice_minimum_php_version()

Admin notice.


Description Description

Warning when the site doesn’t have a minimum required PHP version.


Top ↑

Source Source

File: calculator-mortgage-payoff-add-on/inc/extensions/MP_Addon_Payoff_Elementor.php

	public function admin_notice_minimum_php_version() {

		if ( isset( $_GET['activate'] ) ) unset( $_GET['activate'] );

		$message = sprintf(
		/* translators: 1: Plugin name 2: PHP 3: Required PHP version */
			esc_html__( '"%1$s" requires "%2$s" version %3$s or greater.', 'CalculatorsMortgagePayoffAddon' ),
			'<strong>' . esc_html__( 'Elementor  Extension', 'CalculatorsMortgagePayoffAddon' ) . '</strong>',
			'<strong>' . esc_html__( 'PHP', 'CalculatorsMortgagePayoffAddon' ) . '</strong>',
			self::MINIMUM_PHP_VERSION
		);

		printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );

	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.