| Server IP : 89.108.64.180 / Your IP : 216.73.217.95 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,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 : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/palermohotel.ru/wp-content/plugins/popup-builder/com/classes/ |
Upload File : |
<?php
namespace sgpb;
/**
* Popup Builder Style
*
* @since 2.5.6
*
* detect and include popup styles to the admin pages
*
*/
class Style
{
public static function enqueueStyles($hook)
{
global $post;
global $post_type;
$pageName = $hook;
$styles = array();
$popupType = AdminHelper::getCurrentPopupType();
$currentPostType = AdminHelper::getCurrentPostType();
if($hook == SG_POPUP_POST_TYPE.'_page_'.SG_POPUP_POST_TYPE) {
$pageName = 'popupType';
}
else if (($hook == 'post-new.php' || $hook == 'post.php') && $currentPostType == SG_POPUP_POST_TYPE) {
$pageName = 'editpage';
}
else if ($hook == 'edit.php' && !empty($currentPostType) && $currentPostType == SG_POPUP_POST_TYPE) {
$pageName = 'popupspage';
}
else if ($hook == SG_POPUP_POST_TYPE.'_page_'.SG_POPUP_SUBSCRIBERS_PAGE) {
$pageName = SG_POPUP_SUBSCRIBERS_PAGE;
}
$registeredPlugins = AdminHelper::getOption(SGPB_POPUP_BUILDER_REGISTERED_PLUGINS);
if (!$registeredPlugins) {
return;
}
$registeredPlugins = json_decode($registeredPlugins, true);
if (empty($registeredPlugins)) {
return;
}
foreach ($registeredPlugins as $pluginName => $pluginData) {
if (!is_plugin_active($pluginName)) {
continue;
}
if (empty($pluginData['classPath']) || empty($pluginData['className'])) {
continue;
}
$classPath = $pluginData['classPath'];
$classPath = SG_POPUP_PLUGIN_PATH.$classPath;
if (!file_exists($classPath)) {
continue;
}
require_once($classPath);
if (!class_exists($pluginData['className'])) {
continue;
}
$classObj = new $pluginData['className']();
if (!$classObj instanceof \SgpbIPopupExtension) {
continue;
}
$args = array(
'popupType' => $popupType
);
$styleData = $classObj->getStyles($pageName , $args);
if (!empty($styleData['cssFiles'])) {
$styles[] = $styleData;
}
}
if (empty($styles)) {
return;
}
foreach ($styles as $style) {
if (empty($style['cssFiles'])) {
continue;
}
foreach ($style['cssFiles'] as $cssFile) {
if (empty($cssFile['folderUrl'])) {
ScriptsIncluder::enqueueStyle($cssFile['filename']);
continue;
}
$dirUrl = $cssFile['folderUrl'];
$dep = (!empty($cssFile['dep'])) ? $cssFile['dep'] : '';
$ver = (!empty($cssFile['ver'])) ? $cssFile['ver'] : '';
$inFooter = (!empty($cssFile['inFooter'])) ? $cssFile['inFooter'] : '';;
ScriptsIncluder::registerStyle($cssFile['filename'], array(
'dirUrl'=> $dirUrl,
'dep' => $dep,
'ver' => $ver,
'inFooter' => $inFooter
)
);
ScriptsIncluder::enqueueStyle($cssFile['filename']);
}
}
if ($hook == SG_POPUP_POST_TYPE.'_page_'.SG_POPUP_POST_TYPE) {
ScriptsIncluder::enqueueStyle('popupAdminStyles.css');
}
}
}