Changeset 3213999
- Timestamp:
- 12/28/2024 12:02:43 AM (15 months ago)
- Location:
- login-links/trunk
- Files:
-
- 1 added
- 3 edited
-
login-links.php (modified) (3 diffs)
-
migrations/create_login_links_v2_table.php (modified) (1 diff)
-
migrations/create_login_links_v3_table.php (added)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
login-links/trunk/login-links.php
r3213998 r3213999 3 3 * Plugin Name: Login Links 4 4 * Description: A plugin to create login links for users. 5 * Version: 1.0. 25 * Version: 1.0.3 6 6 * Author: Denis Alemán 7 7 * Author URI: https://wordpress.org/plugins/login-links/ … … 14 14 15 15 define('LL_PLUGIN_DIR', plugin_dir_url(__FILE__)); 16 define('LL_PLUGIN_VERSION', '1.0. 2');16 define('LL_PLUGIN_VERSION', '1.0.3'); 17 17 18 18 require_once plugin_dir_path(__FILE__) . 'migrations/create_login_links_table.php'; … … 26 26 // Bootstrap 27 27 register_activation_hook(__FILE__, 'll_create_database_table'); 28 register_activation_hook(__FILE__, 'll_create_database_table2'); 29 register_activation_hook(__FILE__, 'll_create_database_table3'); 28 30 register_deactivation_hook(__FILE__, 'll_delete_database_table'); 31 register_deactivation_hook(__FILE__, 'll_delete_database_table2'); 32 register_deactivation_hook(__FILE__, 'll_delete_database_table3'); 29 33 LLLinkAutoLogin::listenLoginAttempts(); 30 34 LLUserTransientCleaner::init(); -
login-links/trunk/migrations/create_login_links_v2_table.php
r3213998 r3213999 27 27 } 28 28 29 function ll_delete_database_table () {29 function ll_delete_database_table2() { 30 30 global $wpdb; 31 31 $table_name = $wpdb->prefix . 'login_links2'; -
login-links/trunk/readme.txt
r3213998 r3213999 5 5 Requires at least: 5.0 6 6 Tested up to: 6.7 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 Requires PHP: 7.0 9 9 License: GPLv3
Note: See TracChangeset
for help on using the changeset viewer.