WP Maintenance - Version 1.8

Version Description

Cette version est stable / This version is stable

=

Download this release

Release Info

Developer Florent73
Plugin Icon 128x128 WP Maintenance
Version 1.8
Comparing to
See all releases

Code changes from version 1.7 to 1.8

Files changed (2) hide show
  1. readme.txt +6 -3
  2. wp-maintenance.php +8 -4
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Florent73
3
  Donate link:
4
  Tags: wordpress maintenance plugin
5
  Requires at least: 3.0
6
- Tested up to: 3.9
7
- Stable tag: 1.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -65,12 +65,15 @@ Oui mais merci de me soumettre les modifications souhaitées afin de mettre à j
65
 
66
  == Upgrade Notice ==
67
 
68
- = 1.7 =
69
  Cette version est stable / This version is stable
70
 
71
 
72
  == Changelog ==
73
 
 
 
 
74
  = 1.7 =
75
  * Correction bug upload du logo et du fond / Fixed bug logo and background upload
76
 
3
  Donate link:
4
  Tags: wordpress maintenance plugin
5
  Requires at least: 3.0
6
+ Tested up to: 3.9.1
7
+ Stable tag: 1.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
65
 
66
  == Upgrade Notice ==
67
 
68
+ = 1.8 =
69
  Cette version est stable / This version is stable
70
 
71
 
72
  == Changelog ==
73
 
74
+ = 1.8 =
75
+ * Correction bug upload du logo et du fond / Fixed bug logo and background upload
76
+
77
  = 1.7 =
78
  * Correction bug upload du logo et du fond / Fixed bug logo and background upload
79
 
wp-maintenance.php CHANGED
@@ -3,15 +3,16 @@
3
  /*
4
  Plugin Name: WP Maintenance
5
  Plugin URI: http://wordpress.org/extend/plugins/wp-maintenance/
6
- Description: Le plugin WP Maintenance vous permet de mettre votre site en attente le temps pour vous de faire une maintenance ou du lancement de votre site. Personnalisez cette page de maintenance avec une image, un compte à rebours / The WP Maintenance plugin allows you to put your website on the waiting time for you to do maintenance or launch your website. Personalize this page with picture and countdown.
7
  Author: Florent Maillefaud
8
  Author URI: http://www.restezconnectes.fr/
9
- Version: 1.7
10
  */
11
 
12
 
13
  /*
14
  Change Log
 
15
  04/05/2014 - Correction bug date fin compte à rebours
16
  03/05/2014 - Correction bug drag&drop Réseaux Sociaux
17
  01/05/2014 - Modifs countdown et icones réseaux sociaux..
@@ -57,7 +58,7 @@ function wpm_make_multilang() {
57
  }
58
 
59
  /* Ajoute la version dans les options */
60
- define('WPM_VERSION', '1.7');
61
  $option['wp_maintenance_version'] = WPM_VERSION;
62
  if( !get_option('wp_maintenance_version') ) {
63
  add_option('wp_maintenance_version', $option);
@@ -264,6 +265,9 @@ function wpm_admin_scripts() {
264
  wp_register_script('wpm-my-upload', WP_PLUGIN_URL.'/wp-maintenance/wpm-script.js', array('jquery','media-upload','thickbox'));
265
  wp_enqueue_script('wpm-my-upload');
266
 
 
 
 
267
  // Now we can localize the script with our data.
268
  wp_localize_script( 'wpm-my-upload', 'Data', array(
269
  'textebutton' => __( 'Choose This Image', 'wp-maintenance' ),
@@ -483,7 +487,7 @@ function wpm_maintenance_mode() {
483
  if($paramMMode['b_pattern']>0 && $paramMMode['b_enable_image']==1) {
484
  $addBImage = '
485
  body {
486
- background:url('.WP_PLUGIN_URL.'/wp-maintenance/images/pattern'.$paramMMode['b_pattern'].'.png) '.$paramMMode['b_repeat_image'].';
487
  padding:0;
488
  margin:0;
489
  }';
3
  /*
4
  Plugin Name: WP Maintenance
5
  Plugin URI: http://wordpress.org/extend/plugins/wp-maintenance/
6
+ Description: Le plugin WP Maintenance vous permet de mettre votre site en attente le temps pour vous de faire une maintenance ou du lancement de votre site. Personnalisez cette page de maintenance avec une image, un compte à rebours, etc... / The WP Maintenance plugin allows you to put your website on the waiting time for you to do maintenance or launch your website. Personalize this page with picture, countdown...
7
  Author: Florent Maillefaud
8
  Author URI: http://www.restezconnectes.fr/
9
+ Version: 1.8
10
  */
11
 
12
 
13
  /*
14
  Change Log
15
+ 20/05/2014 - Correction bug upload d'image
16
  04/05/2014 - Correction bug date fin compte à rebours
17
  03/05/2014 - Correction bug drag&drop Réseaux Sociaux
18
  01/05/2014 - Modifs countdown et icones réseaux sociaux..
58
  }
59
 
60
  /* Ajoute la version dans les options */
61
+ define('WPM_VERSION', '1.8');
62
  $option['wp_maintenance_version'] = WPM_VERSION;
63
  if( !get_option('wp_maintenance_version') ) {
64
  add_option('wp_maintenance_version', $option);
265
  wp_register_script('wpm-my-upload', WP_PLUGIN_URL.'/wp-maintenance/wpm-script.js', array('jquery','media-upload','thickbox'));
266
  wp_enqueue_script('wpm-my-upload');
267
 
268
+ // If you're not including an image upload then you can leave this function call out
269
+ wp_enqueue_media();
270
+
271
  // Now we can localize the script with our data.
272
  wp_localize_script( 'wpm-my-upload', 'Data', array(
273
  'textebutton' => __( 'Choose This Image', 'wp-maintenance' ),
487
  if($paramMMode['b_pattern']>0 && $paramMMode['b_enable_image']==1) {
488
  $addBImage = '
489
  body {
490
+ background:url('.WP_PLUGIN_URL.'/wp-maintenance/images/pattern'.$paramMMode['b_pattern'].'.png) '.$paramMMode['b_repeat_image'].' '.$paramMMode['color_bg'].';
491
  padding:0;
492
  margin:0;
493
  }';