Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
malacoscolicine
/
wp-content
/
plugins
/
popup-builder
/
com
/
classes
:
SGPBRequirementsChecker.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php class SGPBRequirementsChecker { public static function init() { self::checkPhpVersion(); } public static function checkPhpVersion() { if (version_compare(PHP_VERSION, SG_POPUP_MINIMUM_PHP_VERSION, '<')) { wp_die(esc_html__('Popup Builder plugin requires PHP version >= '.SG_POPUP_MINIMUM_PHP_VERSION.' version required. You server using PHP version = '.PHP_VERSION)); } } }