PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.3.1
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.3.1
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / includes / admin / class-pro-upgrade-integrations.php

class-pro-upgrade-integrations.php in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.3.1, at includes/admin/class-pro-upgrade-integrations.php

80 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * The Pro Integration Prompt Class
5 */
6 class WeForms_Pro_Integration_Prompt extends WeForms_Abstract_Integration {
7
8 /**
9 * Check if it's a pro field
10 *
11 * @return boolean
12 */
13 public function is_pro() {
14 return true;
15 }
16 }
17
18 /**
19 * Mailchimp
20 */
21 class WeForms_Pro_Integration_MailChimp extends WeForms_Pro_Integration_Prompt {
22
23 function __construct() {
24 $this->id = 'mailchimp';
25 $this->title = __( 'MailChimp', 'weforms' );
26 $this->icon = WEFORMS_ASSET_URI . '/images/icon-mailchimp.png';
27 }
28 }
29
30 /**
31 * Campaign Monitor
32 */
33 class WeForms_Pro_Integration_CM extends WeForms_Pro_Integration_Prompt {
34
35 function __construct() {
36 $this->id = 'campaign-monitor';
37 $this->title = __( 'Campaign Monitor', 'weforms' );
38 $this->icon = WEFORMS_ASSET_URI . '/images/icon-campaign-monitor.png';
39 }
40 }
41
42 /**
43 * Constant Contact
44 */
45 class WeForms_Pro_Integration_CC extends WeForms_Pro_Integration_Prompt {
46
47 function __construct() {
48 $this->id = 'constant-contact';
49 $this->title = __( 'Constant Contact', 'weforms' );
50 $this->icon = WEFORMS_ASSET_URI . '/images/icon-constant-contact.png';
51 }
52 }
53
54
55 /**
56 * AWeber
57 */
58 class WeForms_Pro_Integration_AWeber extends WeForms_Pro_Integration_Prompt {
59
60 function __construct() {
61 $this->id = 'aweber';
62 $this->title = __( 'AWeber', 'weforms' );
63 $this->icon = WEFORMS_ASSET_URI . '/images/icon-aweber.png';
64 }
65 }
66
67
68 /**
69 * ConvertKit
70 */
71 class WeForms_Pro_Integration_ConvertKit extends WeForms_Pro_Integration_Prompt {
72
73 function __construct() {
74 $this->id = 'convertkit';
75 $this->title = __( 'ConvertKit', 'weforms' );
76 $this->icon = WEFORMS_ASSET_URI . '/images/icon-convertkit.png';
77 }
78 }
79
80