wp_back/wp-content/plugins/smart-slider-3/Nextend/WordPress/Fail.php

51 lines
2.9 KiB
PHP
Raw Normal View History

2024-05-20 15:37:46 +03:00
<?php
if (!function_exists('smartslider3_admin_menu')) {
if (!defined('NEXTEND_SMARTSLIDER_3_URL_PATH')) {
define('NEXTEND_SMARTSLIDER_3_URL_PATH', 'smart-slider3');
}
add_action('admin_menu', 'smartslider3_admin_menu');
function smartslider3_admin_menu() {
add_menu_page('Smart Slider', 'Smart Slider', 'smartslider', NEXTEND_SMARTSLIDER_3_URL_PATH, 'smartslider3_admin_error', 'dashicons-format-gallery');
}
function smartslider3_admin_error() {
}
if (isset($_GET['page']) && $_GET['page'] == NEXTEND_SMARTSLIDER_3_URL_PATH) {
if (!version_compare(PHP_VERSION, '7.0', '>=')) {
@wp_die(sprintf('<div class="error"><p>%s</p></div>', sprintf('Smart Slider 3 requires PHP version 7.0+, plugin is currently NOT RUNNING. Current PHP version: %1$s. %2$s%2$s Consult your host about %3$s upgrading your PHP version%4$s.', PHP_VERSION, '<br>', '<a href="https://wordpress.org/support/update-php/" target="_blank">', '</a>')));
} else if (!version_compare(get_bloginfo('version'), '5.0', '>=')) {
@wp_die(sprintf('<div class="error"><p>%s</p></div>', 'Smart Slider 3 requires WordPress version 5.0+. Because you are using an earlier version, the plugin is currently NOT RUNNING.'));
} else if (!defined('NONCE_SALT')) {
@wp_die(sprintf('<div class="error"><p>%1$s %2$s</p></div>', 'NONCE_SALT constant is missing from the wp-config.php file.', sprintf('%1$sMake sure it is defined.%2$s', '<a href="https://smartslider.helpscoutdocs.com/article/2014-use-of-undefined-constant-noncesalt" target="_blank">', '</a>')));
}
}
}
if (!function_exists('smartslider3_fail_php_version')) {
function smartslider3_fail_php_version() {
$html_message = sprintf('<div class="error"><p>%s</p></div>', sprintf('Smart Slider 3 requires PHP version 7.0+, plugin is currently NOT RUNNING. Current PHP version: %1$s. %2$s%2$s Consult your host about %3$s upgrading your PHP version%4$s.', PHP_VERSION, '<br>', '<a href="https://wordpress.org/support/update-php/" target="_blank">', '</a>'));
echo wp_kses_post($html_message);
}
}
if (!function_exists('smartslider3_fail_wp_version')) {
function smartslider3_fail_wp_version() {
$html_message = sprintf('<div class="error"><p>%s</p></div>', 'Smart Slider 3 requires WordPress version 5.0+. Because you are using an earlier version, the plugin is currently NOT RUNNING.');
echo wp_kses_post($html_message);
}
}
if (!function_exists('smartslider3_fail_nonce_salt')) {
function smartslider3_fail_nonce_salt() {
$html_message = sprintf('<div class="error"><p>%1$s %2$s</p></div>', 'NONCE_SALT constant is missing from the wp-config.php file.', sprintf('%1$sMake sure it is defined.%2$s', '<a href="https://smartslider.helpscoutdocs.com/article/2014-use-of-undefined-constant-noncesalt" target="_blank">', '</a>'));
echo wp_kses_post($html_message);
}
}