Changeset 2922202
- Timestamp:
- 06/06/2023 09:27:44 AM (3 years ago)
- Location:
- simple-login-customize/tags/1.0.1
- Files:
-
- 3 edited
-
tags/1.0.1/README.txt (modified) (1 diff)
-
tags/1.0.1/simple-login-customize.php (modified) (1 diff)
-
trunk/simple-login-customize.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-login-customize/tags/1.0.1/tags/1.0.1/README.txt
r2922200 r2922202 4 4 Tags: white label, customize, login, page, customize, copyrights, 5 5 Requires at least: 5.0 6 Tested up to: 6. 0.27 Stable tag: 1.0. 06 Tested up to: 6.2.2 7 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
simple-login-customize/tags/1.0.1/tags/1.0.1/simple-login-customize.php
r2922200 r2922202 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define('SLC_WHITE_LABEL_VERSION', '1.0. 0');38 define('SLC_WHITE_LABEL_VERSION', '1.0.1'); 39 39 40 40 /** -
simple-login-customize/tags/1.0.1/trunk/simple-login-customize.php
r2922199 r2922202 27 27 28 28 // if this file is called directly, abort. 29 if ( ! defined( 'WPINC' )) {29 if (!defined('WPINC')) { 30 30 die; 31 31 } 32 32 33 33 /** 34 * Currently plugin version.35 * Start at version 1.0.0 and use SemVer - https://semver.org36 * Rename this for your plugin and update it as you release new versions.37 */38 define( 'SLC_WHITE_LABEL_VERSION', '1.0.0');34 * Currently plugin version. 35 * Start at version 1.0.0 and use SemVer - https://semver.org 36 * Rename this for your plugin and update it as you release new versions. 37 */ 38 define('SLC_WHITE_LABEL_VERSION', '1.0.0'); 39 39 40 40 /** 41 * The code that runs during plugin activation. 42 * This action is documented in includes/class-simple-login-customize-activator.php 43 */ 44 function activate_slc_white_label() { 45 require_once plugin_dir_path( __FILE__ ) . 'includes/class-simple-login-customize-activator.php'; 41 * The code that runs during plugin activation. 42 * This action is documented in includes/class-simple-login-customize-activator.php 43 */ 44 function activate_slc_white_label() 45 { 46 require_once plugin_dir_path(__FILE__) . 'includes/class-simple-login-customize-activator.php'; 46 47 Simple_Login_Customize_Activator::activate(); 47 48 } … … 51 52 * This action is documented in includes/class-simple-login-customize-deactivator.php 52 53 */ 53 function deactivate_slc_white_label() { 54 require_once plugin_dir_path( __FILE__ ) . 'includes/class-simple-login-customize-deactivator.php'; 54 function deactivate_slc_white_label() 55 { 56 require_once plugin_dir_path(__FILE__) . 'includes/class-simple-login-customize-deactivator.php'; 55 57 Simple_Login_Customize_Deactivator::deactivate(); 56 58 } 57 59 58 register_activation_hook( __FILE__, 'activate_slc_white_label');59 register_deactivation_hook( __FILE__, 'deactivate_slc_white_label');60 register_activation_hook(__FILE__, 'activate_slc_white_label'); 61 register_deactivation_hook(__FILE__, 'deactivate_slc_white_label'); 60 62 61 63 /** … … 63 65 * admin-specif ic hooks, and public-facing site hooks. 64 66 */ 65 require plugin_dir_path( __FILE__) . 'includes/class-simple-login-customize.php';67 require plugin_dir_path(__FILE__) . 'includes/class-simple-login-customize.php'; 66 68 67 69 /** … … 74 76 * @since 1.0.0 75 77 */ 76 function run_slc_white_label() { 78 function run_slc_white_label() 79 { 77 80 78 81 $plugin = new Simple_Login_Customize(); 79 82 $plugin->run(); 80 81 83 } 82 84 run_slc_white_label();
Note: See TracChangeset
for help on using the changeset viewer.