EZP Maintenance Mode - Version 0.6.4

Version Description

  • Bug fix for WordPress 3.5.1 compatibility
Download this release

Release Info

Developer bobriley
Plugin Icon 128x128 EZP Maintenance Mode
Version 0.6.4
Comparing to
See all releases

Code changes from version 0.6.3 to 0.6.4

classes/class-easy-pie-mm-constants.php CHANGED
@@ -35,7 +35,7 @@ if (!class_exists('Easy_Pie_MM_Constants')) {
35
  const OPTION_NAME = 'easy-pie-mm-options';
36
  const MAIN_PAGE_KEY = 'easy-pie-mm-main-page';
37
  const PLUGIN_SLUG = 'easy-pie-maintenance-mode';
38
- const PLUGIN_VERSION = "0.6.3"; // RSR Version
39
 
40
  /* Pseudo constants */
41
 
35
  const OPTION_NAME = 'easy-pie-mm-options';
36
  const MAIN_PAGE_KEY = 'easy-pie-mm-main-page';
37
  const PLUGIN_SLUG = 'easy-pie-maintenance-mode';
38
+ const PLUGIN_VERSION = "0.6.4"; // RSR Version
39
 
40
  /* Pseudo constants */
41
 
classes/class-easy-pie-mm.php CHANGED
@@ -179,12 +179,12 @@ if (!class_exists('Easy_Pie_MM')) {
179
 
180
  public function enqueue_scripts() {
181
 
182
- $jsRoot = plugins_url("/../js", __FILE__);
183
 
184
  wp_enqueue_script('jquery');
185
  wp_enqueue_script('jquery-ui-core');
186
- wp_enqueue_script('jquery.bxslider', $jsRoot . "/jquery.bxslider.min.js", array("jquery"));
187
- wp_enqueue_script("easy_pie_mm_functions", $jsRoot . "/functions.js", array("jquery", "jquery.bxslider"));
188
 
189
  wp_enqueue_media();
190
  }
@@ -193,12 +193,13 @@ if (!class_exists('Easy_Pie_MM')) {
193
  * enqueue_styles
194
  * Loads the required css links only for this plugin */
195
  public function enqueue_styles() {
196
- $styleRoot = plugins_url("/../styles", __FILE__);
197
-
198
- wp_register_style('jquery.bxslider.css', $styleRoot . '/jquery.bxslider.css');
 
199
  wp_enqueue_style('jquery.bxslider.css');
200
 
201
- wp_register_style('easy-pie-styles.css', $styleRoot . '/easy-pie-styles.css');
202
  wp_enqueue_style('easy-pie-styles.css');
203
  }
204
 
@@ -249,9 +250,9 @@ if (!class_exists('Easy_Pie_MM')) {
249
  }
250
 
251
  private function init_user_theme_directory() {
252
-
253
  if (file_exists(Easy_Pie_MM_Utility::$MINI_THEMES_USER_DIRECTORY) == FALSE) {
254
-
255
  $dirCreate = mkdir(Easy_Pie_MM_Utility::$MINI_THEMES_USER_DIRECTORY, 0755, true);
256
 
257
  Easy_Pie_MM_Utility::debug(Easy_Pie_MM_Utility::__("Tried to create ") . Easy_Pie_MM_Utility::$MINI_THEMES_USER_DIRECTORY . "=" . $dirCreate);
@@ -377,13 +378,13 @@ if (!class_exists('Easy_Pie_MM')) {
377
  <input id="easy-pie-mm-field-logo" type="text" name="<?php echo $optionExpression; ?>" size="58" value="<?php echo $currentValue; ?>" />
378
  <input id="easy-pie-mm-upload-logo-button" type="button" value="Upload" />
379
 
380
- <?php
381
- if (empty($currentValue)) {
382
- $displayModifier = "display:none;";
383
- } else {
384
- $displayModifier = "";
385
- }
386
- ?>
387
 
388
  <div >
389
  <img id="easy-pie-mm-field-logo-preview" src="<?php echo $currentValue; ?>" style="<?php echo $displayModifier; ?>max-height:170px;max-width:170px;box-shadow: 1px 7px 20px -4px rgba(34,34,34,1);padding: 5px;border: black solid 1px;margin-top: 14px;"/>
@@ -418,7 +419,7 @@ if (!class_exists('Easy_Pie_MM')) {
418
  }
419
 
420
  public function render_active_theme_selector($args) {
421
-
422
  $options = get_option(Easy_Pie_MM_Constants::OPTION_NAME);
423
  $subkey = $args['subkey'];
424
  $id = $args['id'];
@@ -428,79 +429,79 @@ if (!class_exists('Easy_Pie_MM')) {
428
 
429
  <ul id="easy-pie-mm-bxslider">
430
 
431
- <?php
432
- $displayIndex = 0;
433
- $startingIndex = 0;
434
 
435
- $manifests = Easy_Pie_MM_Utility::get_manifests();
436
 
437
- foreach ($manifests as $manifest) {
438
- // $slidePath = plugins_url("../mini-themes/" . $manifest->key . "/" . $manifest->screenshot, __FILE__);
439
- $upper_screenshot = strtoupper($manifest->screenshot);
440
 
441
- if ($manifest->author_name == '') {
442
 
443
- $caption_text = $this->__('User Defined:') . $manifest->title;
444
- } else {
445
 
446
- $caption_text = $manifest->title . ' ' . $this->__('by') . " <a style='color:#DDD' target='_blank' href='" . $manifest->website_url . "'>" . $manifest->author_name . "</a>";
447
- }
448
 
449
 
450
- if (strpos($upper_screenshot, 'HTTP') === 0) {
451
- // It's an absolute path
452
- $slidePath = $manifest->screenshot;
453
- } else {
454
- // Relative path
455
- $slidePath = $manifest->mini_theme_url . "/" . $manifest->screenshot;
456
- }
457
 
458
- if ($manifest->key == $currentValue) {
459
- $startingIndex = $displayIndex;
460
- }
461
- ?>
462
  <li>
463
  <img style="display:none" idx="<?php echo $displayIndex; ?>" src="<?php echo $slidePath ?>" title="<?php echo $caption_text; ?>" onclick="jQuery('#<?php echo $id; ?>').attr('value', '<?php echo $manifest->key; ?>');" />
464
  </li>
465
- <?php
466
- $displayIndex++;
467
- }
468
- ?>
469
  <!-- ... (repeat for every image in the gallery)-->
470
  </ul>
471
 
472
  <!-- THUMBNAIL SLIDER -->
473
  <ul id="easy-pie-mm-bxslider-pager">
474
 
475
- <?php
476
- $displayIndex = 0;
477
- $startingIndex = 0;
478
 
479
- foreach ($manifests as $manifest) {
480
 
481
- // $slidePath = $manifest->mini_theme_url . "/" . $manifest->screenshot;
482
 
483
- $upper_screenshot = strtoupper($manifest->screenshot);
484
 
485
- if (strpos($upper_screenshot, 'HTTP') === 0) {
486
- // It's an absolute path
487
- $slidePath = $manifest->screenshot;
488
- } else {
489
- // Relative path
490
- $slidePath = $manifest->mini_theme_url . "/" . $manifest->screenshot;
491
- }
492
 
493
- if ($manifest->key == $currentValue) {
494
- $startingIndex = $displayIndex;
495
- }
496
- ?>
497
  <li>
498
  <img style="display:none" idx="<?php echo $displayIndex; ?>" src="<?php echo $slidePath ?>" onclick="jQuery('#<?php echo $id; ?>').attr('value', '<?php echo $manifest->key; ?>');" />
499
  </li>
500
- <?php
501
- $displayIndex++;
502
- }
503
- ?>
504
  </ul>
505
 
506
  <input displayIndex="<?php echo $startingIndex; ?>" style="visibility:hidden" id="<?php echo $id; ?>" name="<?php echo $optionExpression; ?>" value="<?php echo $currentValue; ?>"/>
179
 
180
  public function enqueue_scripts() {
181
 
182
+ $jsRoot = plugins_url() . "/" . Easy_Pie_MM_Constants::PLUGIN_SLUG . "/js";
183
 
184
  wp_enqueue_script('jquery');
185
  wp_enqueue_script('jquery-ui-core');
186
+ wp_enqueue_script('jquery.bxslider', $jsRoot . "/jquery.bxslider.min.js", array("jquery"), Easy_Pie_MM_Constants::PLUGIN_VERSION);
187
+ wp_enqueue_script("easy_pie_mm_functions", $jsRoot . "/functions.js", array("jquery", "jquery.bxslider"), Easy_Pie_MM_Constants::PLUGIN_VERSION);
188
 
189
  wp_enqueue_media();
190
  }
193
  * enqueue_styles
194
  * Loads the required css links only for this plugin */
195
  public function enqueue_styles() {
196
+
197
+ $styleRoot = plugins_url() . "/" . Easy_Pie_MM_Constants::PLUGIN_SLUG . "/styles";
198
+
199
+ wp_register_style('jquery.bxslider.css', $styleRoot . '/jquery.bxslider.css', array(), Easy_Pie_MM_Constants::PLUGIN_VERSION);
200
  wp_enqueue_style('jquery.bxslider.css');
201
 
202
+ wp_register_style('easy-pie-styles.css', $styleRoot . '/easy-pie-styles.css', array(), Easy_Pie_MM_Constants::PLUGIN_VERSION);
203
  wp_enqueue_style('easy-pie-styles.css');
204
  }
205
 
250
  }
251
 
252
  private function init_user_theme_directory() {
253
+
254
  if (file_exists(Easy_Pie_MM_Utility::$MINI_THEMES_USER_DIRECTORY) == FALSE) {
255
+
256
  $dirCreate = mkdir(Easy_Pie_MM_Utility::$MINI_THEMES_USER_DIRECTORY, 0755, true);
257
 
258
  Easy_Pie_MM_Utility::debug(Easy_Pie_MM_Utility::__("Tried to create ") . Easy_Pie_MM_Utility::$MINI_THEMES_USER_DIRECTORY . "=" . $dirCreate);
378
  <input id="easy-pie-mm-field-logo" type="text" name="<?php echo $optionExpression; ?>" size="58" value="<?php echo $currentValue; ?>" />
379
  <input id="easy-pie-mm-upload-logo-button" type="button" value="Upload" />
380
 
381
+ <?php
382
+ if (empty($currentValue)) {
383
+ $displayModifier = "display:none;";
384
+ } else {
385
+ $displayModifier = "";
386
+ }
387
+ ?>
388
 
389
  <div >
390
  <img id="easy-pie-mm-field-logo-preview" src="<?php echo $currentValue; ?>" style="<?php echo $displayModifier; ?>max-height:170px;max-width:170px;box-shadow: 1px 7px 20px -4px rgba(34,34,34,1);padding: 5px;border: black solid 1px;margin-top: 14px;"/>
419
  }
420
 
421
  public function render_active_theme_selector($args) {
422
+
423
  $options = get_option(Easy_Pie_MM_Constants::OPTION_NAME);
424
  $subkey = $args['subkey'];
425
  $id = $args['id'];
429
 
430
  <ul id="easy-pie-mm-bxslider">
431
 
432
+ <?php
433
+ $displayIndex = 0;
434
+ $startingIndex = 0;
435
 
436
+ $manifests = Easy_Pie_MM_Utility::get_manifests();
437
 
438
+ foreach ($manifests as $manifest) {
439
+ // $slidePath = plugins_url("../mini-themes/" . $manifest->key . "/" . $manifest->screenshot, __FILE__);
440
+ $upper_screenshot = strtoupper($manifest->screenshot);
441
 
442
+ if ($manifest->author_name == '') {
443
 
444
+ $caption_text = $this->__('User Defined:') . $manifest->title;
445
+ } else {
446
 
447
+ $caption_text = $manifest->title . ' ' . $this->__('by') . " <a style='color:#DDD' target='_blank' href='" . $manifest->website_url . "'>" . $manifest->author_name . "</a>";
448
+ }
449
 
450
 
451
+ if (strpos($upper_screenshot, 'HTTP') === 0) {
452
+ // It's an absolute path
453
+ $slidePath = $manifest->screenshot;
454
+ } else {
455
+ // Relative path
456
+ $slidePath = $manifest->mini_theme_url . "/" . $manifest->screenshot;
457
+ }
458
 
459
+ if ($manifest->key == $currentValue) {
460
+ $startingIndex = $displayIndex;
461
+ }
462
+ ?>
463
  <li>
464
  <img style="display:none" idx="<?php echo $displayIndex; ?>" src="<?php echo $slidePath ?>" title="<?php echo $caption_text; ?>" onclick="jQuery('#<?php echo $id; ?>').attr('value', '<?php echo $manifest->key; ?>');" />
465
  </li>
466
+ <?php
467
+ $displayIndex++;
468
+ }
469
+ ?>
470
  <!-- ... (repeat for every image in the gallery)-->
471
  </ul>
472
 
473
  <!-- THUMBNAIL SLIDER -->
474
  <ul id="easy-pie-mm-bxslider-pager">
475
 
476
+ <?php
477
+ $displayIndex = 0;
478
+ $startingIndex = 0;
479
 
480
+ foreach ($manifests as $manifest) {
481
 
482
+ // $slidePath = $manifest->mini_theme_url . "/" . $manifest->screenshot;
483
 
484
+ $upper_screenshot = strtoupper($manifest->screenshot);
485
 
486
+ if (strpos($upper_screenshot, 'HTTP') === 0) {
487
+ // It's an absolute path
488
+ $slidePath = $manifest->screenshot;
489
+ } else {
490
+ // Relative path
491
+ $slidePath = $manifest->mini_theme_url . "/" . $manifest->screenshot;
492
+ }
493
 
494
+ if ($manifest->key == $currentValue) {
495
+ $startingIndex = $displayIndex;
496
+ }
497
+ ?>
498
  <li>
499
  <img style="display:none" idx="<?php echo $displayIndex; ?>" src="<?php echo $slidePath ?>" onclick="jQuery('#<?php echo $id; ?>').attr('value', '<?php echo $manifest->key; ?>');" />
500
  </li>
501
+ <?php
502
+ $displayIndex++;
503
+ }
504
+ ?>
505
  </ul>
506
 
507
  <input displayIndex="<?php echo $startingIndex; ?>" style="visibility:hidden" id="<?php echo $id; ?>" name="<?php echo $optionExpression; ?>" value="<?php echo $currentValue; ?>"/>
easy-pie-maintenance-mode.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Easy Pie Maintenance Mode
4
  Plugin URI: http://easypiewp.com/easy-pie-maintenance-mode-faq/
5
  Description: Lets people know that your site is temporarily down.
6
- Version: 0.6.3
7
  Author: Bob Riley
8
  Author URI: http://www.easypiewp.com
9
  Text Domain: easy-pie-maintenance-mode
3
  Plugin Name: Easy Pie Maintenance Mode
4
  Plugin URI: http://easypiewp.com/easy-pie-maintenance-mode-faq/
5
  Description: Lets people know that your site is temporarily down.
6
+ Version: 0.6.4
7
  Author: Bob Riley
8
  Author URI: http://www.easypiewp.com
9
  Text Domain: easy-pie-maintenance-mode
languages/easy-pie-maintenance-mode.mo CHANGED
Binary file
languages/easy-pie-maintenance-mode.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Easy Pie Maintenance Mode\n"
4
- "POT-Creation-Date: 2013-11-29 17:36-0700\n"
5
- "PO-Revision-Date: 2013-11-29 17:38-0700\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Easy Pie WP <bob@easypiewp.com>\n"
8
  "Language: English\n"
@@ -16,71 +16,71 @@ msgstr ""
16
  "X-Poedit-SearchPath-0: J:\\xampp171\\htdocs\\ezp\\bobstuff\\plugins\\easy-"
17
  "pie-maintenance-mode\n"
18
 
19
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm-utility.php:128
20
  msgid "problem reading manifest in "
21
  msgstr "Logo"
22
 
23
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:82
24
  msgid "Maintenance Mode is On"
25
  msgstr "Maintenance Mode is On"
26
 
27
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:130
28
  msgid "Problem reading template "
29
  msgstr "Problem reading template "
30
 
31
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:170
32
  msgid "Tried to create "
33
  msgstr "Tried to create "
34
 
35
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:289
36
  msgid "Enabled"
37
  msgstr "Enabled"
38
 
39
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:292
40
  msgid "Visuals"
41
  msgstr "Visuals"
42
 
43
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:293
44
  msgid "Mini-theme"
45
  msgstr "Mini-theme"
46
 
47
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:296
48
  msgid "Fields"
49
  msgstr "Fields"
50
 
51
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:297
52
  msgid "Title"
53
  msgstr "Title"
54
 
55
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:298
56
  msgid "Header"
57
  msgstr "Header"
58
 
59
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:299
60
  msgid "Headline"
61
  msgstr "Headline"
62
 
63
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:300
64
  msgid "Message"
65
  msgstr "Message"
66
 
67
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:301
68
  msgid "Logo"
69
  msgstr "Logo"
70
 
71
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:331
72
  msgid "HTML tags are allowed. e.g. Add &lt;br/&gt; for break."
73
  msgstr "HTML tags are allowed. e.g. Add &lt;br/&gt; for break."
74
 
75
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:404
76
  msgid "All fields are optional"
77
  msgstr "All fields are optional"
78
 
79
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:446
80
  msgid "User Defined:"
81
  msgstr "User Defined:"
82
 
83
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:449
84
  msgid "by"
85
  msgstr "by"
86
 
@@ -108,17 +108,34 @@ msgstr "Update custom CSS when switching mini-themes."
108
  msgid "How to create a mini-theme for yourself or the community"
109
  msgstr "How to create a mini-theme for yourself or the community"
110
 
111
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/pages/page-options.php:55
112
- msgid "Comment or question?"
113
- msgstr "Comment or question?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
 
115
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/pages/page-options.php:55
116
- msgid "Email"
117
- msgstr "Email"
118
 
119
- #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/pages/page-options.php:55
120
- msgid "or stop by"
121
- msgstr "or stop by"
122
 
123
  #~ msgid "Create your own mini-theme. Even distribute it!"
124
  #~ msgstr "Create your own mini-theme. Even distribute it!"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Easy Pie Maintenance Mode\n"
4
+ "POT-Creation-Date: 2013-12-18 05:59-0700\n"
5
+ "PO-Revision-Date: 2013-12-18 05:59-0700\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Easy Pie WP <bob@easypiewp.com>\n"
8
  "Language: English\n"
16
  "X-Poedit-SearchPath-0: J:\\xampp171\\htdocs\\ezp\\bobstuff\\plugins\\easy-"
17
  "pie-maintenance-mode\n"
18
 
19
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm-utility.php:131
20
  msgid "problem reading manifest in "
21
  msgstr "Logo"
22
 
23
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:81
24
  msgid "Maintenance Mode is On"
25
  msgstr "Maintenance Mode is On"
26
 
27
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:129
28
  msgid "Problem reading template "
29
  msgstr "Problem reading template "
30
 
31
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:258
32
  msgid "Tried to create "
33
  msgstr "Tried to create "
34
 
35
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:296
36
  msgid "Enabled"
37
  msgstr "Enabled"
38
 
39
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:299
40
  msgid "Visuals"
41
  msgstr "Visuals"
42
 
43
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:300
44
  msgid "Mini-theme"
45
  msgstr "Mini-theme"
46
 
47
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:303
48
  msgid "Fields"
49
  msgstr "Fields"
50
 
51
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:304
52
  msgid "Title"
53
  msgstr "Title"
54
 
55
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:305
56
  msgid "Header"
57
  msgstr "Header"
58
 
59
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:306
60
  msgid "Headline"
61
  msgstr "Headline"
62
 
63
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:307
64
  msgid "Message"
65
  msgstr "Message"
66
 
67
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:308
68
  msgid "Logo"
69
  msgstr "Logo"
70
 
71
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:338
72
  msgid "HTML tags are allowed. e.g. Add &lt;br/&gt; for break."
73
  msgstr "HTML tags are allowed. e.g. Add &lt;br/&gt; for break."
74
 
75
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:409
76
  msgid "All fields are optional"
77
  msgstr "All fields are optional"
78
 
79
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:444
80
  msgid "User Defined:"
81
  msgstr "User Defined:"
82
 
83
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/classes/class-easy-pie-mm.php:447
84
  msgid "by"
85
  msgstr "by"
86
 
108
  msgid "How to create a mini-theme for yourself or the community"
109
  msgstr "How to create a mini-theme for yourself or the community"
110
 
111
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/pages/page-options.php:54
112
+ msgid "Plugin FAQ"
113
+ msgstr "Plugin FAQ"
114
+
115
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/pages/page-options.php:56
116
+ msgid "Feature Request"
117
+ msgstr "Feature Request"
118
+
119
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/pages/page-options.php:58
120
+ msgid "Report Bug"
121
+ msgstr "Report Bug"
122
+
123
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/pages/page-options.php:60
124
+ msgid "Write Review"
125
+ msgstr "Write Review"
126
+
127
+ #: J:\xampp171\htdocs\ezp\bobstuff\plugins\easy-pie-maintenance-mode/pages/page-options.php:62
128
+ msgid "Contact Bob"
129
+ msgstr "Contact Bob"
130
+
131
+ #~ msgid "Comment or question?"
132
+ #~ msgstr "Comment or question?"
133
 
134
+ #~ msgid "Email"
135
+ #~ msgstr "Email"
 
136
 
137
+ #~ msgid "or stop by"
138
+ #~ msgstr "or stop by"
 
139
 
140
  #~ msgid "Create your own mini-theme. Even distribute it!"
141
  #~ msgstr "Create your own mini-theme. Even distribute it!"
pages/page-options.php CHANGED
@@ -49,13 +49,17 @@
49
  </div>
50
  <?php
51
  submit_button();
52
-
53
- $format = "<p style='margin-top:10px'>%s <a target='_blank' href='%s'>%s %s </a> %s <a target='_blank' href='%s'>%s</a>.</p>";
54
-
55
- $resolved = sprintf($format, Easy_Pie_MM_Utility::__('Comment or question?'), "mailto:bob@easypiewp.com", Easy_Pie_MM_Utility::__('Email'), "Bob", Easy_Pie_MM_Utility::__('or stop by') , "http://easypiewp.com", "easypiewp.com");
56
-
57
- Easy_Pie_MM_Utility::_e($resolved);
58
  ?>
 
 
 
 
 
 
 
 
 
 
59
  </form>
60
  </div>
61
  </div>
49
  </div>
50
  <?php
51
  submit_button();
 
 
 
 
 
 
52
  ?>
53
+
54
+ <a href="http://easypiewp.com/easy-pie-maintenance-mode-faq/" target="_blank"><?php $this->_e('Plugin FAQ'); ?></a>
55
+ |
56
+ <a href="http://easypiewp.com/about/" target="_blank"><?php $this->_e('Feature Request'); ?></a>
57
+ |
58
+ <a href="http://easypiewp.com/about/" target="_blank"><?php $this->_e('Report Bug'); ?></a>
59
+ |
60
+ <a href="http://wordpress.org/support/view/plugin-reviews/easy-pie-maintenance-mode" target="_blank"><?php $this->_e('Write Review'); ?></a>
61
+ |
62
+ <a href="mailto:bob@easypiewp.com" target="_blank"><?php $this->_e('Contact Bob'); ?></a>
63
  </form>
64
  </div>
65
  </div>
readme.txt CHANGED
@@ -1,41 +1,60 @@
1
  === Easy Pie Maintenance Mode ===
2
  Contributors: bobriley
3
  Donate link: http://easypiewp.com/donate/
4
- Tags: maintenance, admin, administration, construction, under construction, maintenance mode, offline, unavailable, launch
5
  Requires at least: 3.5
6
- Tested up to: 3.8
7
- Stable tag: 0.6.2
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
- Easily let website visitors know your site is temporarily down while you're working on it.
12
 
13
  == Description ==
14
- Need to let your visitors know your site is temporarily down or is under construction? The Easy Pie maintenance mode plugin makes it easy.
15
 
16
- ### Basic Features
17
- * **Simple.** No confusing options or complex setup
18
- * **Mini themes.** Includes four professionally-designed, responsive mini-themes
19
- * **Pre-styled text.** Title, header, headline and message text gets styled without requiring HTML or CSS
20
- * **Add your own logo.** Easily add your own logo using the WordPress Media Library.
 
 
21
 
22
  ### Advanced Features
23
- * **Custom CSS.** Easily add CSS from the Admin page to customize a mini-theme.
24
- * **User Mini Themes.** Change the built-in themes or create your own mini-themes from scratch.
 
 
 
 
 
 
25
 
26
  Thanks to the developers of [bxSlider](http://bxslider.com) for their cool image viewer.
27
 
28
  == Installation ==
29
 
30
- 1. Click Plugins/Add New from the WordPress admin panel
31
- 1. Search for "easy pie maintenance mode" and install
 
 
 
 
32
 
33
- -or-
34
 
35
- 1. Download the .zip package
36
- 1. Unzip into the subdirectory 'easy-pie-maintenance-mode' within your local WordPress plugins directory
37
- 1. Refresh plugin page and activate plugin
38
- 1. Configure plugin using *settings* link under plugin name or by going to Settings/Maintenance mode
 
 
 
 
 
 
 
 
39
 
40
  == Frequently Asked Questions ==
41
 
@@ -82,6 +101,9 @@ Then, please [let me know](mailto:bob@easypiewp.com) what's going on, with as mu
82
 
83
  == Changelog ==
84
 
 
 
 
85
  = 0.6.3 =
86
  * Bug fixes
87
  * Improved styling for WordPress 3.8
@@ -109,6 +131,9 @@ Then, please [let me know](mailto:bob@easypiewp.com) what's going on, with as mu
109
 
110
  == Upgrade Notice ==
111
 
 
 
 
112
  = 0.6.3 =
113
  Small bug fixes & improved styling for WordPress 3.8
114
 
1
  === Easy Pie Maintenance Mode ===
2
  Contributors: bobriley
3
  Donate link: http://easypiewp.com/donate/
4
+ Tags: maintenance, admin, administration, construction, under construction, maintenance mode, offline, unavailable, launch, wordpress maintenance mode, site maintenance
5
  Requires at least: 3.5
6
+ Tested up to: 4.1
7
+ Stable tag: 0.6.4
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
+ Easily let website visitors know your site is undergoing maintenance.
12
 
13
  == Description ==
 
14
 
15
+ Need to let your visitors know your site is undergoing maintenance? Easy Pie Maintenance Mode makes it easy!
16
+
17
+ ### Maintenance Mode Basic Features
18
+ * **Simple.** No confusing options or complex setup.
19
+ * **Mini themes.** Choose between four professionally-designed, responsive mini-themes to display when in Maintenance Mode.
20
+ * **Pre-styled text.** Title, header, headline and message text gets styled without requiring HTML or CSS.
21
+ * **Add your own logo.** Add your own logo using the WordPress Media Library to give Maintenance Mode a personal touch.
22
 
23
  ### Advanced Features
24
+ * **Custom CSS.** Easily add CSS from the Admin page to customize a Maintenance Mode mini-theme.
25
+ * **User Mini Themes.** Greatly customize Maintenance Mode by creating your own mini-theme.
26
+
27
+ ### Overview
28
+ Easy Pie Maintenance Mode was designed to let you get to the important work of improving your site while visitors know you are performing maintenance in the shortest time possible. We've supplied four very nice looking themes to display when your site is undergoing maintenance. Additionally, you can easily cator these to your tastes using CSS. For the advanced users, you can create your own mini theme to be displayed when the site is undergoing maintenance.
29
+
30
+ In this way, both beginners and pros will find Easy Pie Maintenance Mode not only easy to use but highly flexible as well.
31
+
32
 
33
  Thanks to the developers of [bxSlider](http://bxslider.com) for their cool image viewer.
34
 
35
  == Installation ==
36
 
37
+ = Using The WordPress Dashboard =
38
+
39
+ 1. Navigate to the 'Add New' in the plugins dashboard
40
+ 2. Search for 'Coming Soon Page'
41
+ 3. Click 'Install Now'
42
+ 4. Activate the plugin on the Plugin dashboard
43
 
44
+ = Uploading in WordPress Dashboard =
45
 
46
+ 1. Navigate to the 'Add New' in the plugins dashboard
47
+ 2. Navigate to the 'Upload' area
48
+ 3. Select `easy-pie-maintenance-mode.zip` from your computer
49
+ 4. Click 'Install Now'
50
+ 5. Activate the plugin in the Plugin dashboard
51
+
52
+ = Using FTP =
53
+
54
+ 1. Download `easy-pie-maintenance-mode.zip`
55
+ 2. Extract the `easy-pie-maintenance-mode` directory to your computer
56
+ 3. Upload the `easy-pie-maintenance-mode` directory to the `/wp-content/plugins/` directory
57
+ 4. Activate the plugin in the Plugin's dashboard
58
 
59
  == Frequently Asked Questions ==
60
 
101
 
102
  == Changelog ==
103
 
104
+ = 0.6.4 =
105
+ * Bug fix for WordPress 3.5.1 compatibility
106
+
107
  = 0.6.3 =
108
  * Bug fixes
109
  * Improved styling for WordPress 3.8
131
 
132
  == Upgrade Notice ==
133
 
134
+ = 0.6.4 =
135
+ WordPress 3.5.1 compatibility fix
136
+
137
  = 0.6.3 =
138
  Small bug fixes & improved styling for WordPress 3.8
139