Version Description
Download this release
Release Info
Developer | danieliser |
Plugin | Easy Modal |
Version | 1.1.9.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.9.2 to 1.1.9.3
- easy-modal.php +7 -1
- readme.txt +1 -1
easy-modal.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Easy Modal
|
|
4 |
Plugin URI: http://wizardinternetsolutions.com/plugins/easy-modal/
|
5 |
Description: Easy Modal allows you to easily add just about any shortcodes or other content into a modal window. This includes forms such as CF7.
|
6 |
Author: Wizard Internet Solutions
|
7 |
-
Version: 1.1.9.
|
8 |
Author URI: http://wizardinternetsolutions.com
|
9 |
*/
|
10 |
if (is_admin() && ! function_exists( 'get_plugin_data' ) )
|
@@ -32,6 +32,8 @@ class Easy_Modal {
|
|
32 |
$this->Plugin['dir'] = PLUGINDIR.'/'. dirname( plugin_basename(__FILE__));
|
33 |
$this->Plugin['url'] = trailingslashit (get_bloginfo('wpurl') ).PLUGINDIR.'/'. dirname( plugin_basename(__FILE__) );
|
34 |
|
|
|
|
|
35 |
// Add WPMU Support
|
36 |
// Add default options on new site creation.
|
37 |
add_action('wpmu_new_blog', array(&$this, '_wpmu_activation'));
|
@@ -186,6 +188,10 @@ class Easy_Modal {
|
|
186 |
$this->updateSettings($o_settings);
|
187 |
}
|
188 |
public function _activation()
|
|
|
|
|
|
|
|
|
189 |
{
|
190 |
global $wp;
|
191 |
if(!get_option('EasyModal_Version'))
|
4 |
Plugin URI: http://wizardinternetsolutions.com/plugins/easy-modal/
|
5 |
Description: Easy Modal allows you to easily add just about any shortcodes or other content into a modal window. This includes forms such as CF7.
|
6 |
Author: Wizard Internet Solutions
|
7 |
+
Version: 1.1.9.3
|
8 |
Author URI: http://wizardinternetsolutions.com
|
9 |
*/
|
10 |
if (is_admin() && ! function_exists( 'get_plugin_data' ) )
|
32 |
$this->Plugin['dir'] = PLUGINDIR.'/'. dirname( plugin_basename(__FILE__));
|
33 |
$this->Plugin['url'] = trailingslashit (get_bloginfo('wpurl') ).PLUGINDIR.'/'. dirname( plugin_basename(__FILE__) );
|
34 |
|
35 |
+
|
36 |
+
$this->_migrate();
|
37 |
// Add WPMU Support
|
38 |
// Add default options on new site creation.
|
39 |
add_action('wpmu_new_blog', array(&$this, '_wpmu_activation'));
|
188 |
$this->updateSettings($o_settings);
|
189 |
}
|
190 |
public function _activation()
|
191 |
+
{
|
192 |
+
$this->_migrate();
|
193 |
+
}
|
194 |
+
public function _migrate()
|
195 |
{
|
196 |
global $wp;
|
197 |
if(!get_option('EasyModal_Version'))
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: modal, contact form 7, ajax, gravity forms, ajax form
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.5.2
|
7 |
-
Stable tag: 1.1.9.
|
8 |
|
9 |
This plugin allows you to easily add a Modal window with just about any content including Contact Form 7 using ajax submission.
|
10 |
|
4 |
Tags: modal, contact form 7, ajax, gravity forms, ajax form
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.5.2
|
7 |
+
Stable tag: 1.1.9.3
|
8 |
|
9 |
This plugin allows you to easily add a Modal window with just about any content including Contact Form 7 using ajax submission.
|
10 |
|