Version Description
- Changed name to EZP Coming Soon Page to avoid confusion with other plugins
Download this release
Release Info
Developer | bobriley |
Plugin | EZP Coming Soon Page |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- classes/class-ezp-cs-constants.php +1 -1
- classes/class-ezp-cs.php +5 -5
- easy-pie-coming-soon.php +2 -2
- pages/page-options-settings.php +1 -1
- pages/page-options.php +1 -1
- pages/page-subscribers.php +1 -1
- readme.txt +13 -7
classes/class-ezp-cs-constants.php
CHANGED
@@ -32,7 +32,7 @@ if (!class_exists('EZP_CS_Constants')) {
|
|
32 |
const COMPOUND_OPTION_NAME = 'easy-pie-cs-options';
|
33 |
const MAIN_PAGE_KEY = 'easy-pie-cs-main-page';
|
34 |
const PLUGIN_SLUG = 'easy-pie-coming-soon';
|
35 |
-
const PLUGIN_VERSION = "1.0.
|
36 |
|
37 |
|
38 |
|
32 |
const COMPOUND_OPTION_NAME = 'easy-pie-cs-options';
|
33 |
const MAIN_PAGE_KEY = 'easy-pie-cs-main-page';
|
34 |
const PLUGIN_SLUG = 'easy-pie-coming-soon';
|
35 |
+
const PLUGIN_VERSION = "1.0.2"; // RSR Version
|
36 |
|
37 |
|
38 |
|
classes/class-ezp-cs.php
CHANGED
@@ -542,12 +542,12 @@ if (!class_exists('EZP_CS'))
|
|
542 |
$perms = 'manage_options';
|
543 |
|
544 |
|
545 |
-
add_menu_page('
|
546 |
-
$template_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('
|
547 |
-
$settings_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('
|
548 |
-
$subscribers_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('
|
549 |
$coming_soon_page_elite_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Coming Soon Page ELITE'), $this->__('Go Pro!'), $perms, EZP_CS_Constants::$COMING_SOON_PAGE_ELITE_SUBMENU_SLUG, array($this, 'display_coming_soon_page_elite_page'));
|
550 |
-
// $preview_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('
|
551 |
|
552 |
add_action('admin_print_scripts-' . $template_page_hook_suffix, array($this, 'enqueue_scripts'));
|
553 |
add_action('admin_print_scripts-' . $settings_page_hook_suffix, array($this, 'enqueue_scripts'));
|
542 |
$perms = 'manage_options';
|
543 |
|
544 |
|
545 |
+
add_menu_page('EZP Coming Soon', 'Coming Soon', $perms, EZP_CS_Constants::PLUGIN_SLUG, array($this, 'display_template_options_page'), EZP_CS_Utility::$PLUGIN_URL . '/images/easy-pie-cs-menu-icon.png');
|
546 |
+
$template_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('EZP Coming Soon Template'), $this->__('Template'), $perms, EZP_CS_Constants::$TEMPLATE_SUBMENU_SLUG, array($this, 'display_template_options_page'));
|
547 |
+
$settings_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('EZP Coming Soon Settings'), $this->__('Settings'), $perms, EZP_CS_Constants::$SETTINGS_SUBMENU_SLUG, array($this, 'display_settings_options_page'));
|
548 |
+
$subscribers_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('EZP Coming Soon Subscribers'), $this->__('Subscribers'), $perms, EZP_CS_Constants::$SUBSCRIBERS_SUBMENU_SLUG, array($this, 'display_subscribers_options_page'));
|
549 |
$coming_soon_page_elite_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('Coming Soon Page ELITE'), $this->__('Go Pro!'), $perms, EZP_CS_Constants::$COMING_SOON_PAGE_ELITE_SUBMENU_SLUG, array($this, 'display_coming_soon_page_elite_page'));
|
550 |
+
// $preview_page_hook_suffix = add_submenu_page(EZP_CS_Constants::PLUGIN_SLUG, $this->__('EZP Coming Soon Preview'), $this->__('Preview'), $perms, EZP_CS_Constants::$PREVIEW_SUBMENU_SLUG, array($this, 'display_preview_page'));
|
551 |
|
552 |
add_action('admin_print_scripts-' . $template_page_hook_suffix, array($this, 'enqueue_scripts'));
|
553 |
add_action('admin_print_scripts-' . $settings_page_hook_suffix, array($this, 'enqueue_scripts'));
|
easy-pie-coming-soon.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name: Coming Soon Page
|
4 |
Plugin URI: http://easypiewp.com/easy-pie-coming-soon-faq/
|
5 |
Description: Let people know that your site is 'coming soon'. Visitors can submit their email addresses for future notification.
|
6 |
-
Version: 1.0.
|
7 |
Author: Bob Riley
|
8 |
Author URI: http://www.easypiewp.com
|
9 |
Text Domain: easy-pie-coming-soon
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: EZP Coming Soon Page
|
4 |
Plugin URI: http://easypiewp.com/easy-pie-coming-soon-faq/
|
5 |
Description: Let people know that your site is 'coming soon'. Visitors can submit their email addresses for future notification.
|
6 |
+
Version: 1.0.2
|
7 |
Author: Bob Riley
|
8 |
Author URI: http://www.easypiewp.com
|
9 |
Text Domain: easy-pie-coming-soon
|
pages/page-options-settings.php
CHANGED
@@ -30,7 +30,7 @@
|
|
30 |
<div class="wrap">
|
31 |
|
32 |
<?php screen_icon(EZP_CS_Constants::PLUGIN_SLUG); ?>
|
33 |
-
<h2>
|
34 |
<?php
|
35 |
if (isset($_GET['settings-updated']))
|
36 |
{
|
30 |
<div class="wrap">
|
31 |
|
32 |
<?php screen_icon(EZP_CS_Constants::PLUGIN_SLUG); ?>
|
33 |
+
<h2>EZP Coming Soon: <?php EZP_CS_Utility::_e('Settings') ?></h2>
|
34 |
<?php
|
35 |
if (isset($_GET['settings-updated']))
|
36 |
{
|
pages/page-options.php
CHANGED
@@ -47,7 +47,7 @@ if (isset($_GET['tab'])) {
|
|
47 |
<div class="wrap">
|
48 |
|
49 |
<?php screen_icon(EZP_CS_Constants::PLUGIN_SLUG); ?>
|
50 |
-
<h2>
|
51 |
<?php
|
52 |
if (isset($_GET['settings-updated'])) {
|
53 |
echo "<div class='updated'><p>" . EZP_CS_Utility::__('If you have a caching plugin, be sure to clear the cache!') . "</p></div>";
|
47 |
<div class="wrap">
|
48 |
|
49 |
<?php screen_icon(EZP_CS_Constants::PLUGIN_SLUG); ?>
|
50 |
+
<h2>EZP Coming Soon: <?php EZP_CS_Utility::_e('Template'); ?></h2>
|
51 |
<?php
|
52 |
if (isset($_GET['settings-updated'])) {
|
53 |
echo "<div class='updated'><p>" . EZP_CS_Utility::__('If you have a caching plugin, be sure to clear the cache!') . "</p></div>";
|
pages/page-subscribers.php
CHANGED
@@ -47,7 +47,7 @@ if (isset($_GET['tab'])) {
|
|
47 |
<div class="wrap">
|
48 |
|
49 |
<?php screen_icon(EZP_CS_Constants::PLUGIN_SLUG); ?>
|
50 |
-
<h2>
|
51 |
<?php
|
52 |
|
53 |
$global = EZP_CS_Global_Entity::get_instance();
|
47 |
<div class="wrap">
|
48 |
|
49 |
<?php screen_icon(EZP_CS_Constants::PLUGIN_SLUG); ?>
|
50 |
+
<h2>EZP Coming Soon: <?php EZP_CS_Utility::_e('Subscriber Management'); ?></h2>
|
51 |
<?php
|
52 |
|
53 |
$global = EZP_CS_Global_Entity::get_instance();
|
readme.txt
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
=== Coming Soon Page ===
|
2 |
Contributors: bobriley
|
3 |
Donate link: http://easypiewp.com/donate/
|
4 |
Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, offline, unavailable, under construction, underconstruction, wordpress coming soon, wordpress maintenance mode, wordpress under construction
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.1.1
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
-
Coming Soon Page lets visitors know that your website is 'Coming Soon' while it collects emails for you!
|
12 |
|
13 |
== Description ==
|
14 |
|
@@ -34,7 +34,7 @@ Let your visitors know your site is Coming Soon while gathering their contact in
|
|
34 |
* Selectively disable Coming Soon Page on certain URLs
|
35 |
|
36 |
### Advanced Features
|
37 |
-
* Export email addresses gathered by Coming Soon Page to CSV for compatibility with **MailChimp**, **AWeber** and other major email providers.
|
38 |
|
39 |
### Need More? Go Elite!
|
40 |
Take things to the next level with [Coming Soon Page Elite](https://easypiewp.com) where you get everything and the following great features:
|
@@ -47,7 +47,7 @@ Take things to the next level with [Coming Soon Page Elite](https://easypiewp.co
|
|
47 |
* More features being added all the time!
|
48 |
|
49 |
### Overview
|
50 |
-
Coming Soon Page is a great way to let visitors know your site is Coming Soon. When Coming Soon Page is displayed it collects valuable emails from potential customers in a friendly and professional way. Coming Soon Page is also theme independent, having been confirmed to work well with top WordPress themes.
|
51 |
|
52 |
Finally, your visitors won't be just shown your web host's parked domain page, instead they'll know your site is truly 'Coming Soon'!
|
53 |
|
@@ -56,7 +56,7 @@ Finally, your visitors won't be just shown your web host's parked domain page, i
|
|
56 |
= Using The WordPress Dashboard =
|
57 |
|
58 |
1. Navigate to the 'Add New' in the plugins dashboard
|
59 |
-
2. Search for 'Coming Soon Page'
|
60 |
3. Click 'Install Now'
|
61 |
4. Activate the plugin on the Plugin dashboard
|
62 |
|
@@ -77,7 +77,7 @@ Finally, your visitors won't be just shown your web host's parked domain page, i
|
|
77 |
|
78 |
== Frequently Asked Questions ==
|
79 |
|
80 |
-
For the FAQ on
|
81 |
|
82 |
== Screenshots ==
|
83 |
|
@@ -89,6 +89,9 @@ For the FAQ on the Coming Soon Page please visit the [Easy Pie Website](http://e
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
|
|
|
|
|
|
92 |
= 1.0.1 =
|
93 |
* Fixed cross site scripting vulnerability
|
94 |
|
@@ -140,6 +143,9 @@ For the FAQ on the Coming Soon Page please visit the [Easy Pie Website](http://e
|
|
140 |
|
141 |
== Upgrade Notice ==
|
142 |
|
|
|
|
|
|
|
143 |
= 1.0.1 =
|
144 |
* Fixed cross site scripting vulnerability
|
145 |
|
1 |
+
=== EZP Coming Soon Page ===
|
2 |
Contributors: bobriley
|
3 |
Donate link: http://easypiewp.com/donate/
|
4 |
Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, offline, unavailable, under construction, underconstruction, wordpress coming soon, wordpress maintenance mode, wordpress under construction
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.1.1
|
7 |
+
Stable tag: 1.0.2
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
+
EZP Coming Soon Page lets visitors know that your website is 'Coming Soon' while it collects emails for you!
|
12 |
|
13 |
== Description ==
|
14 |
|
34 |
* Selectively disable Coming Soon Page on certain URLs
|
35 |
|
36 |
### Advanced Features
|
37 |
+
* Export email addresses gathered by EZP Coming Soon Page to CSV for compatibility with **MailChimp**, **AWeber** and other major email providers.
|
38 |
|
39 |
### Need More? Go Elite!
|
40 |
Take things to the next level with [Coming Soon Page Elite](https://easypiewp.com) where you get everything and the following great features:
|
47 |
* More features being added all the time!
|
48 |
|
49 |
### Overview
|
50 |
+
EZP Coming Soon Page is a great way to let visitors know your site is Coming Soon. When Coming Soon Page is displayed it collects valuable emails from potential customers in a friendly and professional way. EZP Coming Soon Page is also theme independent, having been confirmed to work well with top WordPress themes.
|
51 |
|
52 |
Finally, your visitors won't be just shown your web host's parked domain page, instead they'll know your site is truly 'Coming Soon'!
|
53 |
|
56 |
= Using The WordPress Dashboard =
|
57 |
|
58 |
1. Navigate to the 'Add New' in the plugins dashboard
|
59 |
+
2. Search for 'EZP Coming Soon Page'
|
60 |
3. Click 'Install Now'
|
61 |
4. Activate the plugin on the Plugin dashboard
|
62 |
|
77 |
|
78 |
== Frequently Asked Questions ==
|
79 |
|
80 |
+
For the FAQ on EZP Coming Soon Page please visit the [Easy Pie Website](http://easypiewp.com/easy-pie-coming-soon-faq/).
|
81 |
|
82 |
== Screenshots ==
|
83 |
|
89 |
|
90 |
== Changelog ==
|
91 |
|
92 |
+
= 1.0.2 =
|
93 |
+
* Changed name to EZP Coming Soon Page to avoid confusion with other plugins
|
94 |
+
|
95 |
= 1.0.1 =
|
96 |
* Fixed cross site scripting vulnerability
|
97 |
|
143 |
|
144 |
== Upgrade Notice ==
|
145 |
|
146 |
+
= 1.0.2 =
|
147 |
+
* Changed name to EZP Coming Soon Page to avoid confusion with other plugins
|
148 |
+
|
149 |
= 1.0.1 =
|
150 |
* Fixed cross site scripting vulnerability
|
151 |
|