Version Description
Download this release
Release Info
Developer | danieliser |
Plugin | Easy Modal |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- easy-modal.php +1 -1
- includes/easy-modal.class.php +13 -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.0.
|
8 |
Author URI: http://wizardinternetsolutions.com
|
9 |
*/
|
10 |
$pluginDIR = PLUGINDIR.'/'. dirname( plugin_basename(__FILE__));
|
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.0.3
|
8 |
Author URI: http://wizardinternetsolutions.com
|
9 |
*/
|
10 |
$pluginDIR = PLUGINDIR.'/'. dirname( plugin_basename(__FILE__));
|
includes/easy-modal.class.php
CHANGED
@@ -14,7 +14,19 @@ $plugininfo=get_plugin_data($pluginFILE);
|
|
14 |
$cur_ver = $plugininfo['Version'];
|
15 |
|
16 |
class easy_modal {
|
17 |
-
var $adminOptionsName = "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
//Returns an array of admin options
|
19 |
function defaultModalOptions(){
|
20 |
$settings = array(
|
14 |
$cur_ver = $plugininfo['Version'];
|
15 |
|
16 |
class easy_modal {
|
17 |
+
var $adminOptionsName = "EasyModal";
|
18 |
+
|
19 |
+
function easy_modal(){
|
20 |
+
// Install & Uninstall Routines
|
21 |
+
register_activation_hook(__FILE__, array(&$this, 'install'));
|
22 |
+
register_deactivation_hook(__FILE__, array(&$this, 'uninstall'));
|
23 |
+
}
|
24 |
+
function install(){
|
25 |
+
$this->resetAdminOptions();
|
26 |
+
}
|
27 |
+
function uninstall(){
|
28 |
+
|
29 |
+
}
|
30 |
//Returns an array of admin options
|
31 |
function defaultModalOptions(){
|
32 |
$settings = array(
|
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
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 1.0.
|
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
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 1.0.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 |
|