-
Notifications
You must be signed in to change notification settings - Fork 19
/
userregistration.php
88 lines (72 loc) · 2.54 KB
/
userregistration.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
Plugin Name: Gravity Forms User Registration Add-On
Plugin URI: https://gravityforms.com
Description: Allows WordPress users to be automatically created upon submitting a Gravity Form.
Version: 4.6
Author: Gravity Forms
Author URI: https://gravityforms.com
License: GPL-2.0+
Text Domain: gravityformsuserregistration
Domain Path: /languages
------------------------------------------------------------------------
Copyright 2009-2020 Rocketgenius, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
**/
defined( 'ABSPATH' ) || die();
define( 'GF_USER_REGISTRATION_VERSION', '4.6' );
// If Gravity Forms is loaded, bootstrap the User Registration Add-On.
add_action( 'gform_loaded', array( 'GF_User_Registration_Bootstrap', 'load' ), 5 );
/**
* Class GF_User_Registration_Bootstrap
*
* Handles the loading of the User Registration add-on and registers with the add-on framework
*/
class GF_User_Registration_Bootstrap {
/**
* If the Feed Add-On Framework exists, User Registration Add-On and login widget are loaded.
*
* @access public
* @static
*/
public static function load() {
if ( ! method_exists( 'GFForms', 'include_feed_addon_framework' ) ) {
return;
}
require_once( 'class-gf-user-registration.php' );
require_once( 'includes/class-gf-login-widget.php' );
require_once( 'includes/class-gf-user-registration-dynamic-hook.php' );
GFAddOn::register( 'GF_User_Registration' );
}
}
/**
* Returns an instance of the GF_User_Registration class
*
* @see GF_User_Registration::get_instance()
* @return GF_User_Registration
*/
function gf_user_registration() {
return GF_User_Registration::get_instance();
}
/**
* Obtains the login form HTML markup
*
* @see GF_User_Registration->get_login_html()
*
* @param array $args Login form arguments.
*
* @return string The login form HTML
*/
function gf_user_registration_login_form( $args = array() ) {
return gf_user_registration()->get_login_html( $args );
}