Simple Full Screen Background Image - Version 1.2.3

Version Description

  • Included support for Instant Images plugin. This provides users with an easy way to search for and upload images from Unsplash.com locally to their WordPress site. The Instant Images button is now included on the Appearance > Fullscreen BG Image settings page. This requires that the Instant Images plugin be installed and active.
Download this release

Release Info

Developer scott.deluzio
Plugin Icon 128x128 Simple Full Screen Background Image
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

includes/admin-page.php CHANGED
@@ -22,7 +22,7 @@ function sfsb_admin_page() {
22
 
23
  <p>
24
  <input id="fsb_settings[image]" name="fsb_settings[image]" type="text" class="upload_field" value="<?php echo $sfsb_options['image']; ?>"/>
25
- <input class="upload_image_button button-secondary" type="button" value="<?php _e( 'Choose Image', 'simple-full-screen-background-image' ); ?>"/>
26
  <label class="description" for="fsb_settings[image]"><?php _e( 'This image will be applied to the background of your website', 'simple-full-screen-background-image' ); ?></label>
27
  </p>
28
 
@@ -45,7 +45,13 @@ function sfsb_admin_page() {
45
  <?php
46
  }
47
  function sfsb_init_admin() {
48
- add_submenu_page( 'themes.php', __( 'Full Screen Background Image', 'simple-full-screen-background-image' ), __( 'Fullscreen BG Image', 'simple-full-screen-background-image' ), 'manage_options', 'full-screen-background', 'sfsb_admin_page' );
 
 
 
 
 
 
49
  }
50
  add_action('admin_menu', 'sfsb_init_admin');
51
 
22
 
23
  <p>
24
  <input id="fsb_settings[image]" name="fsb_settings[image]" type="text" class="upload_field" value="<?php echo $sfsb_options['image']; ?>"/>
25
+ <input class="upload_image_button button-secondary" type="button" value="<?php _e( 'Choose Image', 'simple-full-screen-background-image' ); ?>"/><?php do_action( 'sfsb_additional_image_sources' ); ?>
26
  <label class="description" for="fsb_settings[image]"><?php _e( 'This image will be applied to the background of your website', 'simple-full-screen-background-image' ); ?></label>
27
  </p>
28
 
45
  <?php
46
  }
47
  function sfsb_init_admin() {
48
+ $sfsb_admin = add_submenu_page( 'themes.php', __( 'Full Screen Background Image', 'simple-full-screen-background-image' ), __( 'Fullscreen BG Image', 'simple-full-screen-background-image' ), 'manage_options', 'full-screen-background', 'sfsb_admin_page' );
49
+
50
+ /* Adding support for Instant Images plugin */
51
+ if ( class_exists( 'InstantImages' ) ){
52
+ add_action( 'admin_head-' . $sfsb_admin, 'instant_img_media_popup_content' );
53
+ add_action( 'sfsb_additional_image_sources', 'instant_img_media_popup' );
54
+ }
55
  }
56
  add_action('admin_menu', 'sfsb_init_admin');
57
 
readme.txt CHANGED
@@ -3,10 +3,10 @@ Contributors: scott.deluzio
3
  Author: scott.deluzio
4
  Author URI: http://scottdeluzio.com
5
  Plugin URI: https://fullscreenbackgroundimages.com
6
- Tags: background, fullscreen, image, bg image, full screen
7
  Requires at least: 3.6
8
  Tested up to: 4.9.4
9
- Stable tag: 1.2.2
10
 
11
  This plugin provides a simple way to set an automatically scaled full screen background image.
12
 
@@ -41,11 +41,15 @@ Learn more about the Pro version [here](https://fullscreenbackgroundimages.com/d
41
 
42
  == Changelog ==
43
 
 
 
 
 
44
  = 1.2.2 =
45
 
46
  * Included alt tag in background image to comply with Web Content Accessibility Guidelines (WCAG). The background image is considered decoration, and so an empty alt tag (i.e. alt="") is an acceptable way to allow assistive technology to ignore the image.
47
  * Update: Improved translatable POT file.
48
- * Update: Added subtle upsell (dismissable) messaging in the plugin to inform users of the pro version of this plugin.
49
 
50
  = 1.2.1 =
51
 
@@ -68,3 +72,8 @@ Learn more about the Pro version [here](https://fullscreenbackgroundimages.com/d
68
  * Did some general code cleanup and improvement
69
 
70
 
 
 
 
 
 
3
  Author: scott.deluzio
4
  Author URI: http://scottdeluzio.com
5
  Plugin URI: https://fullscreenbackgroundimages.com
6
+ Tags: background, fullscreen, image, bg image, full screen, background image
7
  Requires at least: 3.6
8
  Tested up to: 4.9.4
9
+ Stable tag: 1.2.3
10
 
11
  This plugin provides a simple way to set an automatically scaled full screen background image.
12
 
41
 
42
  == Changelog ==
43
 
44
+ = 1.2.3 =
45
+
46
+ * Included support for [Instant Images](https://wordpress.org/plugins/instant-images/) plugin. This provides users with an easy way to search for and upload images from Unsplash.com locally to their WordPress site. The Instant Images button is now included on the Appearance > Fullscreen BG Image settings page. This requires that the Instant Images plugin be installed and active.
47
+
48
  = 1.2.2 =
49
 
50
  * Included alt tag in background image to comply with Web Content Accessibility Guidelines (WCAG). The background image is considered decoration, and so an empty alt tag (i.e. alt="") is an acceptable way to allow assistive technology to ignore the image.
51
  * Update: Improved translatable POT file.
52
+ * Update: Added subtle upsell (dismissible) messaging in the plugin to inform users of the pro version of this plugin.
53
 
54
  = 1.2.1 =
55
 
72
  * Did some general code cleanup and improvement
73
 
74
 
75
+ == Upgrade Notice ==
76
+
77
+ = 1.2.3 =
78
+
79
+ * Included support for [Instant Images](https://wordpress.org/plugins/instant-images/) plugin. This provides users with an easy way to search for and upload images from Unsplash.com locally to their WordPress site. The Instant Images button is now included on the Appearance > Fullscreen BG Image settings page. This requires that the Instant Images plugin be installed and active.
simple-full-screen-background.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Simple Full Screen Background Image
4
  Description: Easily set an automatically scaled full-screen background images
5
- Version: 1.2.2
6
  Author: Scott DeLuzio
7
  Author URI: http://scottdeluzio.com
8
  */
2
  /*
3
  Plugin Name: Simple Full Screen Background Image
4
  Description: Easily set an automatically scaled full-screen background images
5
+ Version: 1.2.3
6
  Author: Scott DeLuzio
7
  Author URI: http://scottdeluzio.com
8
  */