Sidebar Login - Version 3.0.0

Version Description

  • Refactor - Rewritten majority of plugin using more up to date standards and namespaces.
  • Refactor - Cleaned up the widget settings form to make functionality clearer.
  • Refactor - Removed email->username conversion since this is supported natively.
  • Tweak - Added %nicename% placeholder.
  • Tweak - Improved default styling and included extra wrapping divs (.sidebar-login-form, .sidebar-login-account, .sidebar-login-links).
  • Performance - Removed jQuery dependency and BlockUI script.
  • Performance - Removed sidebar_login_js_in_footer filter - this is now true by default.
  • Fix - Prevent notices due to incorrect sizeof() usage.
Download this release

Release Info

Developer mikejolley
Plugin Icon 128x128 Sidebar Login
Version 3.0.0
Comparing to
See all releases

Code changes from version 3.0.0.beta2 to 3.0.0

.editorconfig DELETED
@@ -1,27 +0,0 @@
1
- # This file is for unifying the coding style for different editors and IDEs
2
- # editorconfig.org
3
-
4
- # WordPress Coding Standards
5
- # https://make.wordpress.org/core/handbook/coding-standards/
6
-
7
- root = true
8
-
9
- [*]
10
- charset = utf-8
11
- end_of_line = lf
12
- indent_size = 4
13
- tab_width = 4
14
- indent_style = tab
15
- insert_final_newline = true
16
- trim_trailing_whitespace = true
17
-
18
- [*.txt]
19
- trim_trailing_whitespace = false
20
-
21
- [*.{md,json,yml}]
22
- trim_trailing_whitespace = false
23
- indent_style = space
24
- indent_size = 2
25
-
26
- [*.json]
27
- indent_style = tab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: login, sidebar, widget, sidebar login, login widget, login form
5
  Requires at least: 5.0
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 2.7.3
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -81,14 +81,14 @@ These tags can be used in the widget settings for titles + links and will be rep
81
  == Changelog ==
82
 
83
  = 3.0.0 =
84
- * Fix - Prevent notices due to incorrect sizeof usage.
85
- * Tweak - %nicename% placeholder.
 
 
86
  * Tweak - Improved default styling and included extra wrapping divs (.sidebar-login-form, .sidebar-login-account, .sidebar-login-links).
87
- * Refactor - Removed email->username conversion since this is now supported natively.
88
- * Refactor - Rewritten majority of plugin using more up to date standards.
89
- * Refactor - Cleaned up the settings form.
90
  * Performance - Removed jQuery dependency and BlockUI script.
91
  * Performance - Removed `sidebar_login_js_in_footer` filter - this is now true by default.
 
92
 
93
  = 2.7.3 =
94
  * Tweak - %avatar% placeholder.
5
  Requires at least: 5.0
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 3.0.0
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
81
  == Changelog ==
82
 
83
  = 3.0.0 =
84
+ * Refactor - Rewritten majority of plugin using more up to date standards and namespaces.
85
+ * Refactor - Cleaned up the widget settings form to make functionality clearer.
86
+ * Refactor - Removed email->username conversion since this is supported natively.
87
+ * Tweak - Added %nicename% placeholder.
88
  * Tweak - Improved default styling and included extra wrapping divs (.sidebar-login-form, .sidebar-login-account, .sidebar-login-links).
 
 
 
89
  * Performance - Removed jQuery dependency and BlockUI script.
90
  * Performance - Removed `sidebar_login_js_in_footer` filter - this is now true by default.
91
+ * Fix - Prevent notices due to incorrect sizeof() usage.
92
 
93
  = 2.7.3 =
94
  * Tweak - %avatar% placeholder.
sidebar-login.php CHANGED
@@ -11,7 +11,7 @@
11
  * Plugin Name: Sidebar Login
12
  * Plugin URI: http://wordpress.org/extend/plugins/sidebar-login/
13
  * Description: Easily add an ajax-enhanced login widget to the sidebar of your WordPress site.
14
- * Version: 3.0.0.beta2
15
  * Author: Mike Jolley
16
  * Author URI: http://mikejolley.com
17
  * Requires at least: 5.0
11
  * Plugin Name: Sidebar Login
12
  * Plugin URI: http://wordpress.org/extend/plugins/sidebar-login/
13
  * Description: Easily add an ajax-enhanced login widget to the sidebar of your WordPress site.
14
+ * Version: 3.0.0
15
  * Author: Mike Jolley
16
  * Author URI: http://mikejolley.com
17
  * Requires at least: 5.0
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit6494c9ab69bd0180b011aa2f9cd0a73d::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit4a0c1d47dc92d09d4bb01379b04b3bdb::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit6494c9ab69bd0180b011aa2f9cd0a73d
6
  {
7
  private static $loader;
8
 
@@ -22,15 +22,15 @@ class ComposerAutoloaderInit6494c9ab69bd0180b011aa2f9cd0a73d
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInit6494c9ab69bd0180b011aa2f9cd0a73d', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
- spl_autoload_unregister(array('ComposerAutoloaderInit6494c9ab69bd0180b011aa2f9cd0a73d', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require_once __DIR__ . '/autoload_static.php';
32
 
33
- call_user_func(\Composer\Autoload\ComposerStaticInit6494c9ab69bd0180b011aa2f9cd0a73d::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit4a0c1d47dc92d09d4bb01379b04b3bdb
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInit4a0c1d47dc92d09d4bb01379b04b3bdb', 'loadClassLoader'), true, true);
26
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
27
+ spl_autoload_unregister(array('ComposerAutoloaderInit4a0c1d47dc92d09d4bb01379b04b3bdb', 'loadClassLoader'));
28
 
29
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
  if ($useStaticLoader) {
31
  require_once __DIR__ . '/autoload_static.php';
32
 
33
+ call_user_func(\Composer\Autoload\ComposerStaticInit4a0c1d47dc92d09d4bb01379b04b3bdb::getInitializer($loader));
34
  } else {
35
  $map = require __DIR__ . '/autoload_namespaces.php';
36
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit6494c9ab69bd0180b011aa2f9cd0a73d
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'M' =>
@@ -31,8 +31,8 @@ class ComposerStaticInit6494c9ab69bd0180b011aa2f9cd0a73d
31
  public static function getInitializer(ClassLoader $loader)
32
  {
33
  return \Closure::bind(function () use ($loader) {
34
- $loader->prefixLengthsPsr4 = ComposerStaticInit6494c9ab69bd0180b011aa2f9cd0a73d::$prefixLengthsPsr4;
35
- $loader->prefixDirsPsr4 = ComposerStaticInit6494c9ab69bd0180b011aa2f9cd0a73d::$prefixDirsPsr4;
36
 
37
  }, null, ClassLoader::class);
38
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit4a0c1d47dc92d09d4bb01379b04b3bdb
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'M' =>
31
  public static function getInitializer(ClassLoader $loader)
32
  {
33
  return \Closure::bind(function () use ($loader) {
34
+ $loader->prefixLengthsPsr4 = ComposerStaticInit4a0c1d47dc92d09d4bb01379b04b3bdb::$prefixLengthsPsr4;
35
+ $loader->prefixDirsPsr4 = ComposerStaticInit4a0c1d47dc92d09d4bb01379b04b3bdb::$prefixDirsPsr4;
36
 
37
  }, null, ClassLoader::class);
38
  }