Changeset 3078052
- Timestamp:
- 04/27/2024 04:18:14 PM (2 years ago)
- Location:
- login-widget-for-ultimate-member
- Files:
-
- 29 added
- 4 edited
-
tags/1.1.1 (added)
-
tags/1.1.1/assets (added)
-
tags/1.1.1/assets/screenshot-1.png (added)
-
tags/1.1.1/build (added)
-
tags/1.1.1/build/block.json (added)
-
tags/1.1.1/build/index.asset.php (added)
-
tags/1.1.1/build/index.js (added)
-
tags/1.1.1/build/index.js.map (added)
-
tags/1.1.1/build/style-index.css (added)
-
tags/1.1.1/build/style-index.css.map (added)
-
tags/1.1.1/includes (added)
-
tags/1.1.1/includes/class-um-login-core.php (added)
-
tags/1.1.1/includes/class-um-login-widget.php (added)
-
tags/1.1.1/js (added)
-
tags/1.1.1/js/editor.js (added)
-
tags/1.1.1/languages (added)
-
tags/1.1.1/languages/login-widget-for-ultimate-member-en_US.mo (added)
-
tags/1.1.1/languages/login-widget-for-ultimate-member-en_US.po (added)
-
tags/1.1.1/languages/login-widget-for-ultimate-member-es.mo (added)
-
tags/1.1.1/languages/login-widget-for-ultimate-member-es.po (added)
-
tags/1.1.1/languages/login-widget-for-ultimate-member.pot (added)
-
tags/1.1.1/license.txt (added)
-
tags/1.1.1/login-widget-for-ultimate-member.php (added)
-
tags/1.1.1/readme.txt (added)
-
tags/1.1.1/templates (added)
-
tags/1.1.1/templates/login-widget (added)
-
tags/1.1.1/templates/login-widget/login-form.php (added)
-
tags/1.1.1/templates/login-widget/login-view.php (added)
-
tags/1.1.1/um-login-widget.php (added)
-
trunk/includes/class-um-login-core.php (modified) (2 diffs)
-
trunk/includes/class-um-login-widget.php (modified) (1 diff)
-
trunk/login-widget-for-ultimate-member.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
login-widget-for-ultimate-member/trunk/includes/class-um-login-core.php
r3075311 r3078052 21 21 add_action( 'login_form_middle', array( $this, 'um_login_lost_password_link' ) ); 22 22 add_action( 'plugins_loaded', array( $this, 'um_login_widget_load_textdomain' ) ); 23 add_action( 'widgets_init', array( $this, 'lw_um_register_widget' ) );24 23 add_action( 'enqueue_block_editor_assets', array( $this, 'register_block_assets' ) ); 25 24 add_action( 'wp_ajax_um_load_login_form', array( $this, 'um_load_login_form' ) ); … … 100 99 101 100 /** 102 * Register widget103 */104 public function lw_um_register_widget() {105 register_widget( 'UM_Login_Core' );106 }107 108 /**109 101 * Lost password link 110 102 * -
login-widget-for-ultimate-member/trunk/includes/class-um-login-widget.php
r3075311 r3078052 12 12 exit; 13 13 }; 14 15 14 16 15 /** -
login-widget-for-ultimate-member/trunk/login-widget-for-ultimate-member.php
r3075311 r3078052 5 5 * Description: A login widget for Ultimate Member. 6 6 * Author: SuitePlugins 7 * Version: 1.1. 07 * Version: 1.1.1 8 8 * Author URI: http://www.suiteplugins.com 9 9 * Text Domain: login-widget-for-ultimate-member … … 23 23 define( 'UM_LOGIN_PATH', plugin_dir_path( __FILE__ ) ); 24 24 define( 'UM_LOGIN_PLUGIN', plugin_basename( __FILE__ ) ); 25 define( 'UM_LOGIN_VERSION', '1.0.9.8' ); 26 25 define( 'UM_LOGIN_VERSION', '1.1.1' ); 26 27 require_once UM_LOGIN_PATH . 'includes/class-um-login-widget.php'; 28 require_once UM_LOGIN_PATH . 'includes/class-um-login-core.php'; 27 29 28 30 /** … … 61 63 */ 62 64 public function load_files() { 63 require_once UM_LOGIN_PATH . 'includes/class-um-login-widget.php'; 64 require_once UM_LOGIN_PATH . 'includes/class-um-login-core.php'; 65 65 66 66 67 $core = new UM_Login_Core(); … … 70 71 71 72 UM_Login_Widget_Loader::get_instance(); 73 74 add_action( 'widgets_init', 'um_login_form_register_widgets' ); 75 function um_login_form_register_widgets() { 76 register_widget( 'UM_Login_Widget' ); 77 } 72 78 73 79 function um_login_widget_render_block( $attributes ) { -
login-widget-for-ultimate-member/trunk/readme.txt
r3075311 r3078052 5 5 Requires at least: 4.1 6 6 Tested up to: 6.5.2 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 Requires PHP: 5.6 9 9 License: GNU Version 2 or Any Later Version … … 108 108 * Test with Ultimate Member 2.8.5 109 109 110 = 1.1.1 = 111 * Fixed: Previous widget doesn't work anymore 112 110 113 == Upgrade Notice == 111 114 None yet.
Note: See TracChangeset
for help on using the changeset viewer.