1 | <?php |
||
14 | class Yikes_Easy_MC_Registration_Checkbox_Class extends Yikes_Easy_MC_Checkbox_Integration_Class { |
||
15 | |||
16 | /** |
||
17 | * The integration type. |
||
18 | * |
||
19 | * @var string $type |
||
20 | */ |
||
21 | protected $type = 'registration_form'; |
||
22 | |||
23 | /** |
||
24 | * Constructor. |
||
25 | */ |
||
26 | public function __construct() { |
||
30 | |||
31 | /** |
||
32 | * Outputs the subscribe checkbox. |
||
33 | */ |
||
34 | public function output_checkbox() { |
||
37 | |||
38 | /** |
||
39 | * Subscribe the user if they so chose. |
||
40 | * |
||
41 | * @param int $user_id The WP User's ID. |
||
42 | */ |
||
43 | public function subscribe_from_registration( $user_id ) { |
||
62 | } |
||
63 | $yikes_easy_mc_registration_checkbox_class = new Yikes_Easy_MC_Registration_Checkbox_Class(); |
||
64 |