Version Description
Current Version of Popup Builder is 2.4.8
Download this release
Release Info
Developer | Sygnoos |
Plugin | Popup Builder – Responsive WordPress Pop up |
Version | 2.4.8 |
Comparing to | |
See all releases |
Code changes from version 2.4.7 to 2.4.8
- classes/SGPBExtensionManager.php +4 -0
- config.php +1 -1
- popup-builder.php +2 -2
- readme.txt +4 -1
classes/SGPBExtensionManager.php
CHANGED
@@ -97,6 +97,10 @@ class SGPBExtensionManager {
|
|
97 |
$this->setExtensionKey($extensionKey);
|
98 |
$extensionClass = $this->getExtensionClassName();
|
99 |
|
|
|
|
|
|
|
|
|
100 |
require_once($extensionData['app-path'].'/classes/'.$extensionClass.'.php');
|
101 |
$extensionObj = new $extensionClass();
|
102 |
$extensionObj->setPostData($postData);
|
97 |
$this->setExtensionKey($extensionKey);
|
98 |
$extensionClass = $this->getExtensionClassName();
|
99 |
|
100 |
+
if(!file_exists($extensionData['app-path'] . '/classes/' . $extensionClass . '.php')) {
|
101 |
+
continue;
|
102 |
+
}
|
103 |
+
|
104 |
require_once($extensionData['app-path'].'/classes/'.$extensionClass.'.php');
|
105 |
$extensionObj = new $extensionClass();
|
106 |
$extensionObj->setPostData($postData);
|
config.php
CHANGED
@@ -12,7 +12,7 @@ define('SG_APP_POPUP_CLASSES', SG_APP_POPUP_PATH . '/classes');
|
|
12 |
define('SG_APP_POPUP_JS', SG_APP_POPUP_PATH . '/javascript');
|
13 |
define('SG_APP_POPUP_HELPERS', SG_APP_POPUP_PATH . '/helpers/');
|
14 |
define('SG_APP_POPUP_TABLE_LIMIT', 15);
|
15 |
-
define('SG_POPUP_VERSION', 2.
|
16 |
define('SG_POPUP_PRO_URL', 'http://popup-builder.com/');
|
17 |
define('SG_POPUP_EXTENSION_URL', 'http://popup-builder.com/extensions');
|
18 |
define('SG_MAILCHIMP_EXTENSION_URL', 'http://popup-builder.com/downloads/mailchimp/');
|
12 |
define('SG_APP_POPUP_JS', SG_APP_POPUP_PATH . '/javascript');
|
13 |
define('SG_APP_POPUP_HELPERS', SG_APP_POPUP_PATH . '/helpers/');
|
14 |
define('SG_APP_POPUP_TABLE_LIMIT', 15);
|
15 |
+
define('SG_POPUP_VERSION', 2.48);
|
16 |
define('SG_POPUP_PRO_URL', 'http://popup-builder.com/');
|
17 |
define('SG_POPUP_EXTENSION_URL', 'http://popup-builder.com/extensions');
|
18 |
define('SG_MAILCHIMP_EXTENSION_URL', 'http://popup-builder.com/downloads/mailchimp/');
|
popup-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Popup Builder
|
4 |
* Plugin URI: http://sygnoos.com
|
5 |
* Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
|
6 |
-
* Version: 2.4.
|
7 |
* Author: Sygnoos
|
8 |
* Author URI: http://www.sygnoos.com
|
9 |
* License: GPLv2
|
@@ -419,7 +419,7 @@ function getPopupIdByClassFromMenu ($items) {
|
|
419 |
|
420 |
function sg_popup_plugin_loaded() {
|
421 |
$versionPopup = get_option('SG_POPUP_VERSION');
|
422 |
-
if(!$versionPopup || $versionPopup <
|
423 |
update_option('SG_POPUP_VERSION', SG_POPUP_VERSION);
|
424 |
PopupInstaller::install();
|
425 |
}
|
3 |
* Plugin Name: Popup Builder
|
4 |
* Plugin URI: http://sygnoos.com
|
5 |
* Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
|
6 |
+
* Version: 2.4.8
|
7 |
* Author: Sygnoos
|
8 |
* Author URI: http://www.sygnoos.com
|
9 |
* License: GPLv2
|
419 |
|
420 |
function sg_popup_plugin_loaded() {
|
421 |
$versionPopup = get_option('SG_POPUP_VERSION');
|
422 |
+
if(!$versionPopup || $versionPopup < 2.47 ) {
|
423 |
update_option('SG_POPUP_VERSION', SG_POPUP_VERSION);
|
424 |
PopupInstaller::install();
|
425 |
}
|
readme.txt
CHANGED
@@ -155,6 +155,9 @@ Go to the Popup Builder settings and set your desired options.
|
|
155 |
|
156 |
== Changelog ==
|
157 |
|
|
|
|
|
|
|
158 |
= Version 2.4.7 =
|
159 |
* Added extension logic
|
160 |
* Code optimization
|
@@ -553,7 +556,7 @@ Leave us a good review :)
|
|
553 |
|
554 |
== Upgrade Notice ==
|
555 |
|
556 |
-
Current Version of Popup Builder is 2.4.
|
557 |
|
558 |
== Other Notes ==
|
559 |
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= Version 2.4.8 =
|
159 |
+
* Bug fixed connected to extensions manager.
|
160 |
+
|
161 |
= Version 2.4.7 =
|
162 |
* Added extension logic
|
163 |
* Code optimization
|
556 |
|
557 |
== Upgrade Notice ==
|
558 |
|
559 |
+
Current Version of Popup Builder is 2.4.8
|
560 |
|
561 |
== Other Notes ==
|
562 |
|