PluginProbe
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP / 1.1.3
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP v1.1.3
1.2.72 1.2.71 1.2.70 1.2.69 1.2.68 1.2.67 1.2.66 1.2.65 1.2.64 1.2.63 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 1.0.22 1.0.23 All 172 releases
userswp / userswp.php

userswp.php in UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP 1.1.3, at userswp.php

62 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: UsersWP
4 Plugin URI: https://userswp.io/
5 Description: User management plugin.
6 Version: 1.1.3
7 Author: AyeCode Ltd
8 Author URI: https://userswp.io
9 License: GPL-2.0+
10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt
11 Text Domain: userswp
12 Domain Path: /languages
13 Requires at least: 4.9
14 Tested up to: 5.2
15 */
16
17 // If this file is called directly, abort.
18 if (!defined('WPINC')) {
19 die;
20 }
21
22 if ( ! defined( 'USERSWP_NAME' ) ) {
23 define( 'USERSWP_NAME', 'userswp' );
24 }
25
26 if ( ! defined( 'USERSWP_VERSION' ) ) {
27 define('USERSWP_VERSION', '1.1.3');
28 }
29
30 if ( ! defined( 'USERSWP_PATH' ) ) {
31 define('USERSWP_PATH', plugin_dir_path(__FILE__));
32 }
33
34 if ( ! defined( 'USERSWP_PLUGIN_URL' ) ) {
35 define('USERSWP_PLUGIN_URL', plugin_dir_url(__FILE__));
36 }
37
38 if ( ! defined( 'USERSWP_PLUGIN_FILE' ) ) {
39 define( 'USERSWP_PLUGIN_FILE', __FILE__ );
40 }
41
42 /**
43 * The core plugin class that is used to define internationalization,
44 * admin-specific hooks, and public-facing site hooks.
45 */
46 if ( ! class_exists( 'UsersWP' ) ) {
47 include_once dirname( __FILE__ ) . '/includes/class-userswp.php';
48 }
49 /**
50 * Begins execution of the plugin.
51 *
52 * Since everything within the plugin is registered via hooks,
53 * then kicking off the plugin from this point in the file does
54 * not affect the page life cycle.
55 *
56 * @since 1.0.0
57 */
58 function run_users_wp() {
59 global $userswp;
60 $userswp = new UsersWP();
61 }
62 run_users_wp();