Changeset 1649136
- Timestamp:
- 05/01/2017 06:35:36 PM (9 years ago)
- Location:
- easy-pie-coming-soon/trunk
- Files:
-
- 26 edited
-
classes/Entities/admin/class-ezp-cs-config-entity.php (modified) (2 diffs)
-
classes/Entities/admin/class-ezp-cs-content-entity.php (modified) (3 diffs)
-
classes/Entities/admin/class-ezp-cs-display-entity.php (modified) (3 diffs)
-
classes/Entities/admin/class-ezp-cs-set-entity.php (modified) (2 diffs)
-
classes/Entities/class-ezp-cs-global-entity.php (modified) (2 diffs)
-
classes/Entities/class-ezp-cs-json-entity-base.php (modified) (2 diffs)
-
classes/Entities/class-ezp-cs-standard-entity-base.php (modified) (2 diffs)
-
classes/Entities/crm/class-ezp-contact-entity.php (modified) (2 diffs)
-
classes/Entities/crm/class-ezp-cs-subscriber-entity.php (modified) (2 diffs)
-
classes/Entities/crm/class-ezp-email-entity.php (modified) (2 diffs)
-
classes/Utilities/class-ezp-cs-query-utility.php (modified) (2 diffs)
-
classes/Utilities/class-ezp-cs-render-utility.php (modified) (2 diffs)
-
classes/Utilities/class-ezp-cs-test-utility.php (modified) (2 diffs)
-
classes/Utilities/class-ezp-cs-utility.php (modified) (2 diffs)
-
classes/class-ezp-cs-constants.php (modified) (3 diffs)
-
classes/class-ezp-cs-plugin-base.php (modified) (2 diffs)
-
classes/class-ezp-cs-verifiers.php (modified) (4 diffs)
-
classes/class-ezp-cs.php (modified) (2 diffs)
-
easy-pie-coming-soon.php (modified) (2 diffs)
-
languages/easy-pie-coming-soon.po (modified) (1 diff)
-
mini-themes/base-responsive/index.php (modified) (2 diffs)
-
pages/page-preview-tab.php (modified) (1 diff)
-
pages/page-subscribers-list-tab.php (modified) (1 diff)
-
pages/page-subscribers-newsletter-tab.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
web-service/crm_ws.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
easy-pie-coming-soon/trunk/classes/Entities/admin/class-ezp-cs-config-entity.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 28 28 /** 29 29 * @author Snap Creek LLC <[email protected]> 30 * @copyright 201 6Snap Creek LLC30 * @copyright 2017 Snap Creek LLC 31 31 */ 32 32 class EZP_CS_Config_Entity extends EZP_CS_JSON_Entity_Base { -
easy-pie-coming-soon/trunk/classes/Entities/admin/class-ezp-cs-content-entity.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 28 28 /** 29 29 * @author Snap Creek LLC <[email protected]> 30 * @copyright 201 6Snap Creek LLC30 * @copyright 2017 Snap Creek LLC 31 31 */ 32 32 class EZP_CS_Content_Entity extends EZP_CS_JSON_Entity_Base { … … 54 54 $this->description = EZP_CS_Utility::__("Our exciting new website is coming soon! Check back later."); 55 55 $this->disclaimer = EZP_CS_Utility::__("We won't spam you or sell your email address. Pinky swear."); 56 $this->footer = EZP_CS_Utility::__("(C)201 4My Company LLC");56 $this->footer = EZP_CS_Utility::__("(C)2017 My Company LLC"); 57 57 58 58 $this->email_placeholder_text = EZP_CS_Utility::__("Enter email"); -
easy-pie-coming-soon/trunk/classes/Entities/admin/class-ezp-cs-display-entity.php
r1504690 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 39 39 /** 40 40 * @author Snap Creek LLC <[email protected]> 41 * @copyright 201 6Snap Creek LLC41 * @copyright 2017 Snap Creek LLC 42 42 */ 43 43 class EZP_CS_Display_Entity extends EZP_CS_JSON_Entity_Base { … … 106 106 public function set_background_type() 107 107 { 108 if(trim($this->youtube_video_id) != false) 109 { 110 $this->background_type = EZP_CS_Display_Background_Type::Video; 111 } 112 else if(trim($this->background_image_url) != false) 108 if(trim($this->background_image_url) != false) 113 109 { 114 110 $this->background_type = EZP_CS_Display_Background_Type::Image; -
easy-pie-coming-soon/trunk/classes/Entities/admin/class-ezp-cs-set-entity.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 28 28 /** 29 29 * @author Snap Creek LLC <[email protected]> 30 * @copyright 201 6Snap Creek LLC30 * @copyright 2017 Snap Creek LLC 31 31 */ 32 32 class EZP_CS_Set_Entity extends EZP_CS_JSON_Entity_Base { -
easy-pie-coming-soon/trunk/classes/Entities/class-ezp-cs-global-entity.php
r1493335 r1649136 4 4 /* 5 5 Easy Pie Coming Soon Plugin 6 Copyright (C) 201 6, Snap Creek LLC6 Copyright (C) 2017, Snap Creek LLC 7 7 website: snapcreek.com contact: [email protected] 8 8 … … 40 40 /** 41 41 * @author Snap Creek LLC <[email protected]> 42 * @copyright 201 6Snap Creek LLC42 * @copyright 2017 Snap Creek LLC 43 43 */ 44 44 class EZP_CS_Global_Entity extends EZP_CS_JSON_Entity_Base { -
easy-pie-coming-soon/trunk/classes/Entities/class-ezp-cs-json-entity-base.php
r1504690 r1649136 2 2 /* 3 3 Easy Pie Coming Soon Plugin 4 Copyright (C) 201 6, Snap Creek LLC4 Copyright (C) 2017, Snap Creek LLC 5 5 website: snapcreek.com contact: [email protected] 6 6 … … 30 30 * 31 31 * @author Snap Creek LLC <[email protected]> 32 * @copyright 201 6Snap Creek LLC32 * @copyright 2017 Snap Creek LLC 33 33 */ 34 34 class EZP_CS_JSON_Entity_Base -
easy-pie-coming-soon/trunk/classes/Entities/class-ezp-cs-standard-entity-base.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 31 31 * 32 32 * @author Snap Creek LLC <[email protected]> 33 * @copyright 201 6Snap Creek LLC33 * @copyright 2017 Snap Creek LLC 34 34 */ 35 35 class EZP_CS_Standard_Entity_Base { -
easy-pie-coming-soon/trunk/classes/Entities/crm/class-ezp-contact-entity.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 28 28 /** 29 29 * @author Snap Creek LLC <[email protected]> 30 * @copyright 201 6Snap Creek LLC30 * @copyright 2017 Snap Creek LLC 31 31 */ 32 32 class EZP_Contact_Entity extends EZP_CS_Standard_Entity_Base { -
easy-pie-coming-soon/trunk/classes/Entities/crm/class-ezp-cs-subscriber-entity.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 28 28 /** 29 29 * @author Snap Creek LLC <[email protected]> 30 * @copyright 201 6Snap Creek LLC30 * @copyright 2017 Snap Creek LLC 31 31 */ 32 32 class EZP_CS_Subscriber_Entity extends EZP_CS_Standard_Entity_Base { -
easy-pie-coming-soon/trunk/classes/Entities/crm/class-ezp-email-entity.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 28 28 /** 29 29 * @author Snap Creek LLC <[email protected]> 30 * @copyright 201 6Snap Creek LLC30 * @copyright 2017 Snap Creek LLC 31 31 */ 32 32 class EZP_Email_Entity extends EZP_CS_Standard_Entity_Base { -
easy-pie-coming-soon/trunk/classes/Utilities/class-ezp-cs-query-utility.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 28 28 /** 29 29 * @author Snap Creek LLC <[email protected]> 30 * @copyright 201 6Snap Creek LLC30 * @copyright 2017 Snap Creek LLC 31 31 */ 32 32 class EZP_CS_Query_Utility { -
easy-pie-coming-soon/trunk/classes/Utilities/class-ezp-cs-render-utility.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 26 26 /** 27 27 * @author Snap Creek LLC <[email protected]> 28 * @copyright 201 6Snap Creek LLC28 * @copyright 2017 Snap Creek LLC 29 29 */ 30 30 class EZP_CS_Render_Utility { -
easy-pie-coming-soon/trunk/classes/Utilities/class-ezp-cs-test-utility.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 28 28 /** 29 29 * @author Snap Creek LLC <[email protected]> 30 * @copyright 201 6Snap Creek LLC30 * @copyright 2017 Snap Creek LLC 31 31 */ 32 32 class EZP_CS_Test_Utility { -
easy-pie-coming-soon/trunk/classes/Utilities/class-ezp-cs-utility.php
r1504690 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 28 28 /** 29 29 * @author Snap Creek LLC <[email protected]> 30 * @copyright 201 6Snap Creek LLC30 * @copyright 2017 Snap Creek LLC 31 31 */ 32 32 class EZP_CS_Utility { -
easy-pie-coming-soon/trunk/classes/class-ezp-cs-constants.php
r1504692 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 26 26 /** 27 27 * @author Snap Creek LLC <[email protected]> 28 * @copyright 201 6Snap Creek LLC28 * @copyright 2017 Snap Creek LLC 29 29 */ 30 30 class EZP_CS_Constants { … … 33 33 const MAIN_PAGE_KEY = 'easy-pie-cs-main-page'; 34 34 const PLUGIN_SLUG = 'easy-pie-coming-soon'; 35 const PLUGIN_VERSION = "1.0. 5"; // RSR Version35 const PLUGIN_VERSION = "1.0.6"; // RSR Version 36 36 37 37 -
easy-pie-coming-soon/trunk/classes/class-ezp-cs-plugin-base.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 26 26 /** 27 27 * @author Snap Creek LLC <[email protected]> 28 * @copyright 201 6Snap Creek LLC28 * @copyright 2017 Snap Creek LLC 29 29 */ 30 30 class EZP_CS_Plugin_Base { -
easy-pie-coming-soon/trunk/classes/class-ezp-cs-verifiers.php
r1493335 r1649136 3 3 /* 4 4 Easy Pie Coming Soon Plugin 5 Copyright (C) 201 6, Snap Creek LLC5 Copyright (C) 2017, Snap Creek LLC 6 6 website: snapcreek.com contact: [email protected] 7 7 … … 26 26 /** 27 27 * @author Snap Creek LLC <[email protected]> 28 * @copyright 201 6Snap Creek LLC28 * @copyright 2017 Snap Creek LLC 29 29 */ 30 30 class EZP_CS_Verifier_Base { … … 48 48 /** 49 49 * @author Snap Creek LLC <[email protected]> 50 * @copyright 201 6Snap Creek LLC50 * @copyright 2017 Snap Creek LLC 51 51 */ 52 52 class EZP_CS_Range_Verifier extends EZP_CS_Verifier_Base { … … 81 81 /** 82 82 * @author Snap Creek LLC <[email protected]> 83 * @copyright 201 6Snap Creek LLC83 * @copyright 2017 Snap Creek LLC 84 84 */ 85 85 class EZP_CS_Regex_Verifier extends EZP_CS_Verifier_Base { -
easy-pie-coming-soon/trunk/classes/class-ezp-cs.php
r1504690 r1649136 2 2 /* 3 3 Easy Pie Coming Soon Plugin 4 Copyright (C) 201 6, Snap Creek LLC4 Copyright (C) 2017, Snap Creek LLC 5 5 website: snapcreek.com contact: [email protected] 6 6 … … 39 39 /** 40 40 * @author Snap Creek LLC <[email protected]> 41 * @copyright 201 6Snap Creek LLC41 * @copyright 2017 Snap Creek LLC 42 42 */ 43 43 class EZP_CS extends EZP_CS_Plugin_Base -
easy-pie-coming-soon/trunk/easy-pie-coming-soon.php
r1504692 r1649136 4 4 Plugin URI: https://snapcreek.com/easy-pie-coming-soon-faq/ 5 5 Description: Let people know that your site is 'coming soon'. Visitors can submit their email addresses for future notification. 6 Version: 1.0. 56 Version: 1.0.6 7 7 Author: Snap Creek Software 8 8 Author URI: https://snapcreek.com/ezp-coming-soon/ … … 13 13 /* 14 14 Easy Pie Coming Soon Plugin 15 Copyright (C) 201 6, Snap Creek LLC15 Copyright (C) 2017, Snap Creek LLC 16 16 website: snapcreek.com contact: [email protected] 17 17 -
easy-pie-coming-soon/trunk/languages/easy-pie-coming-soon.po
r1173779 r1649136 30 30 31 31 #: ../classes/Entities/admin/class-ezp-cs-content-entity.php:56 32 msgid "(C)201 4My Company LLC"32 msgid "(C)2017 My Company LLC" 33 33 msgstr "" 34 34 -
easy-pie-coming-soon/trunk/mini-themes/base-responsive/index.php
r1504690 r1649136 18 18 if ($_SERVER['REQUEST_METHOD'] === 'POST') { 19 19 20 check_admin_referer( 'ezpcs-main' ); 21 20 22 $subscriber = new EZP_CS_Subscriber_Entity(); 21 23 22 $error_text = EZP_CS_Query_Utility::add_new_subscriber($_POST['ezp_cs_name'], $_POST['ezp_cs_email']); 24 if(!ctype_xdigit($_POST['ezp_cs_name']) && (!is_numeric($_POST['ezp_cs_name']))) 25 { 26 $error_text = EZP_CS_Query_Utility::add_new_subscriber($_POST['ezp_cs_name'], $_POST['ezp_cs_email']); 27 } 23 28 24 29 if ($error_text == null) { … … 217 222 <form id="email-collection-box" name="email-collection-box" class="form-inline" role="form" action="" method="post"> 218 223 224 <?php 225 if($config->collect_email) 226 { 227 wp_nonce_field('ezpcs-main'); 228 } 229 ?> 230 219 231 <!-- Setting: {{name-collection-on}}--> 220 232 <div id="name-form-group" class="form-group"> -
easy-pie-coming-soon/trunk/pages/page-preview-tab.php
r1493335 r1649136 2 2 /* 3 3 Easy Pie Coming Soon Plugin 4 Copyright (C) 201 6, Snap Creek LLC4 Copyright (C) 2017, Snap Creek LLC 5 5 website: snapcreek.com contact: [email protected] 6 6 -
easy-pie-coming-soon/trunk/pages/page-subscribers-list-tab.php
r1493335 r1649136 2 2 /* 3 3 Easy Pie Coming Soon Plugin 4 Copyright (C) 201 6, Snap Creek LLC4 Copyright (C) 2017, Snap Creek LLC 5 5 website: snapcreek.com contact: [email protected] 6 6 -
easy-pie-coming-soon/trunk/pages/page-subscribers-newsletter-tab.php
r1493335 r1649136 2 2 /* 3 3 Easy Pie Coming Soon Plugin 4 Copyright (C) 201 6, Snap Creek LLC4 Copyright (C) 2017, Snap Creek LLC 5 5 website: snapcreek.com contact: [email protected] 6 6 -
easy-pie-coming-soon/trunk/readme.txt
r1516812 r1649136 4 4 Tags: admin, admin maintenance, maintenance page, coming soon, coming soon page, squeeze page, landing page, launch, launch page, maintenance, maintenance mode, offline, unavailable, under construction, underconstruction, wordpress coming soon, wordpress maintenance mode, wordpress under construction, easypie, easy pie 5 5 Requires at least: 3.5 6 Tested up to: 4. 6.16 Tested up to: 4.7.4 7 7 Stable tag: 1.0.5 8 8 License: GPLv3 … … 96 96 == Changelog == 97 97 98 = 1.0.6 = 99 * Added simple spam protection 100 98 101 = 1.0.5 = 99 102 * Made UI easier to use … … 160 163 == Upgrade Notice == 161 164 165 = 1.0.6 = 166 * Added simple spam protection 167 162 168 = 1.0.5 = 163 169 * Made UI easier to use -
easy-pie-coming-soon/trunk/web-service/crm_ws.php
r1493335 r1649136 2 2 /* 3 3 Easy Pie Coming Soon Plugin 4 Copyright (C) 201 6, Snap Creek LLC4 Copyright (C) 2017, Snap Creek LLC 5 5 website: snapcreek.com contact: [email protected] 6 6
Note: See TracChangeset
for help on using the changeset viewer.