class-affiliatewp.php
1.82 KB
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
defined('ABSPATH') or exit;
/**
* Class MC4WP_AffiliateWP_Integration
*
* @ignore
*/
class MC4WP_AffiliateWP_Integration extends MC4WP_User_Integration
{
/**
* @var string
*/
public $name = 'AffiliateWP';
/**
* @var string
*/
public $description = 'Subscribes people from your AffiliateWP registration form.';
/**
* @var bool
*/
public $shown = false;
/**
* Add hooks
*/
public function add_hooks()
{
if (! $this->options['implicit']) {
add_action('affwp_register_fields_before_tos', array( $this, 'maybe_output_checkbox' ), 20);
}
add_action('affwp_register_user', array( $this, 'subscribe_from_registration' ), 90, 1);
}
/**
* Output checkbox, once.
*/
public function maybe_output_checkbox()
{
if (! $this->shown) {
$this->output_checkbox();
$this->shown = true;
}
}
/**
* Subscribes from WP Registration Form
*
* @param int $affiliate_id
*
* @return bool|string
*/
public function subscribe_from_registration($affiliate_id)
{
// was sign-up checkbox checked?
if (! $this->triggered()) {
return false;
}
// gather emailadress from user who WordPress registered
$user_id = affwp_get_affiliate_user_id($affiliate_id);
$user = get_userdata($user_id);
// was a user found with the given ID?
if (! $user instanceof WP_User) {
return false;
}
$data = $this->user_merge_vars($user);
return $this->subscribe($data, $user_id);
}
/* End registration form functions */
/**
* @return bool
*/
public function is_installed()
{
return class_exists('Affiliate_WP');
}
}