Version Description
Download this release
Release Info
Developer | danieliser |
Plugin | Easy Modal |
Version | 1.1.9.9 |
Comparing to | |
See all releases |
Code changes from version 1.1.9.8 to 1.1.9.9
- easy-modal.php +7 -7
- readme.txt +5 -3
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 |
add_action('admin_init', '_disable_older_versions', 1 );
|
@@ -18,7 +18,7 @@ function _disable_older_versions()
|
|
18 |
/* Change Begin */
|
19 |
class Easy_Modal {
|
20 |
var $Plugin = array(
|
21 |
-
'version' => '1.1.9.
|
22 |
'name' => 'Easy Modal',
|
23 |
'slug' => 'easy-modal',
|
24 |
'short'=> 'EasyModal'
|
@@ -34,11 +34,11 @@ class Easy_Modal {
|
|
34 |
// Add WPMU Support
|
35 |
// Add default options on new site creation.
|
36 |
add_action('wpmu_new_blog', array(&$this, '_wpmu_activation'));
|
37 |
-
add_action('init', array(&$this,'_migrate'),10);
|
38 |
|
39 |
if (is_admin())
|
40 |
{
|
41 |
add_action('init', array(&$this,'_activation'),9);
|
|
|
42 |
register_activation_hook(__FILE__, array(&$this, '_activation'));
|
43 |
|
44 |
add_action('admin_menu', array(&$this, '_menus') );
|
@@ -322,12 +322,12 @@ class Easy_Modal {
|
|
322 |
|
323 |
public function dashboard_page()
|
324 |
{
|
325 |
-
require_once('/inc/dashboard.php');
|
326 |
}
|
327 |
|
328 |
public function settings_page()
|
329 |
{
|
330 |
-
require_once('/inc/settings.php');
|
331 |
}
|
332 |
public function getSettings()
|
333 |
{
|
@@ -407,7 +407,7 @@ class Easy_Modal {
|
|
407 |
/* Modal Functions */
|
408 |
public function modal_page()
|
409 |
{
|
410 |
-
require_once('/inc/modals.php');
|
411 |
}
|
412 |
public function getModalList()
|
413 |
{
|
@@ -548,7 +548,7 @@ class Easy_Modal {
|
|
548 |
public function theme_page()
|
549 |
|
550 |
{
|
551 |
-
require_once('/inc/themes.php');
|
552 |
}
|
553 |
public function getThemeList()
|
554 |
{
|
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.9
|
8 |
Author URI: http://wizardinternetsolutions.com
|
9 |
*/
|
10 |
add_action('admin_init', '_disable_older_versions', 1 );
|
18 |
/* Change Begin */
|
19 |
class Easy_Modal {
|
20 |
var $Plugin = array(
|
21 |
+
'version' => '1.1.9.9',
|
22 |
'name' => 'Easy Modal',
|
23 |
'slug' => 'easy-modal',
|
24 |
'short'=> 'EasyModal'
|
34 |
// Add WPMU Support
|
35 |
// Add default options on new site creation.
|
36 |
add_action('wpmu_new_blog', array(&$this, '_wpmu_activation'));
|
|
|
37 |
|
38 |
if (is_admin())
|
39 |
{
|
40 |
add_action('init', array(&$this,'_activation'),9);
|
41 |
+
add_action('init', array(&$this,'_migrate'),10);
|
42 |
register_activation_hook(__FILE__, array(&$this, '_activation'));
|
43 |
|
44 |
add_action('admin_menu', array(&$this, '_menus') );
|
322 |
|
323 |
public function dashboard_page()
|
324 |
{
|
325 |
+
require_once(ABSPATH.PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/inc/dashboard.php');
|
326 |
}
|
327 |
|
328 |
public function settings_page()
|
329 |
{
|
330 |
+
require_once(ABSPATH.PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/inc/settings.php');
|
331 |
}
|
332 |
public function getSettings()
|
333 |
{
|
407 |
/* Modal Functions */
|
408 |
public function modal_page()
|
409 |
{
|
410 |
+
require_once(ABSPATH.PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/inc/modals.php');
|
411 |
}
|
412 |
public function getModalList()
|
413 |
{
|
548 |
public function theme_page()
|
549 |
|
550 |
{
|
551 |
+
require_once(ABSPATH.PLUGINDIR.'/'.dirname(plugin_basename(__FILE__)).'/inc/themes.php');
|
552 |
}
|
553 |
public function getThemeList()
|
554 |
{
|
readme.txt
CHANGED
@@ -1,12 +1,14 @@
|
|
1 |
=== Easy Modal ===
|
2 |
Contributors: danieliser
|
|
|
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PQTG2JYUKSLFW
|
4 |
-
Tags: modal,
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.5.2
|
7 |
-
Stable tag: 1.1.9.
|
8 |
|
9 |
-
|
10 |
|
11 |
== Description ==
|
12 |
|
1 |
=== Easy Modal ===
|
2 |
Contributors: danieliser
|
3 |
+
Author URI: http://wizardinternetsolutions.com
|
4 |
+
Plugin URI: http://wizardinternetsolutions.com/plugins/easy-modal
|
5 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PQTG2JYUKSLFW
|
6 |
+
Tags: modal,modal box,modal form,modal window,popup,popup box,popup form,popup window,ajax forms,contact form 7,gravity forms
|
7 |
Requires at least: 3.0.1
|
8 |
Tested up to: 3.5.2
|
9 |
+
Stable tag: 1.1.9.9
|
10 |
|
11 |
+
Easily create & style modals with any content. Theme editor to quickly style your modals. Add forms, social media boxes, videos & more.
|
12 |
|
13 |
== Description ==
|
14 |
|