| Server IP : 68.183.124.220 / Your IP : 216.73.216.141 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/popup-builder/com/helpers/ |
Upload File : |
<?php
namespace sgpb;
class PopupBuilderActivePackage
{
// sections and additional options array
private static $sections = array();
public static function init()
{
self::$sections = array(
'userStatus' => array('min-version' => SGPB_POPUP_PRO_MIN_VERSION, 'min-pkg' => SGPB_POPUP_PKG_SILVER, 'name' => 'userStatus'),
'popupConditionsSection' => array('min-version' => SGPB_POPUP_PRO_MIN_VERSION, 'min-pkg' => SGPB_POPUP_PKG_SILVER, 'name' => 'popupConditionsSection'),
'popupOtherConditionsSection' => array('min-version' => SGPB_POPUP_PRO_MIN_VERSION, 'min-pkg' => SGPB_POPUP_PKG_SILVER, 'name' => 'popupOtherConditionsSection')
);
}
public static function canUseSection($optionName)
{
if (!isset(self::$sections[$optionName])) {
return false;
}
return self::checkVersionAndPackage(self::$sections[$optionName]);
}
public static function canUseOption($optionName)
{
global $SGPB_OPTIONS;
$currentOption = array();
foreach ($SGPB_OPTIONS as $option) {
if ($option['name'] == $optionName) {
$currentOption = $option;
break;
}
}
return self::checkVersionAndPackage($currentOption);
}
private static function checkVersionAndPackage($option)
{
$currentOptionSupportedMinVersion = '';
$currentOptionSupportedMinPackage = '';
if (isset($option['min-version'])) {
$currentOptionSupportedMinVersion = $option['min-version'];
}
if (isset($option['min-pkg'])) {
$currentOptionSupportedMinPackage = $option['min-pkg'];
}
$optionAvailable = apply_filters('sgpbOptionAvailable', $option);
// it can change option availability from extensions
if (isset($optionAvailable['status'])) {
return $optionAvailable['status'];
}
if ($currentOptionSupportedMinVersion <= SG_POPUP_VERSION) {
if ($currentOptionSupportedMinPackage <= SGPB_POPUP_PKG) {
return true;
}
}
return false;
}
}
PopupBuilderActivePackage::init();