PluginProbe
NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar / 3.2.11
NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar v3.2.11
3.3.1 3.3.0 3.2.14 3.2.13 3.2.12 3.2.11 3.2.10 3.2.9 3.2.8 3.2.7 trunk 0.2.5.5 0.2.5.6 0.2.5.7 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0 1.2.1 All 156 releases
notificationx / includes / Extensions / ConvertKit / ConvertKit.php

ConvertKit.php in NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar 3.2.11, at includes/Extensions/ConvertKit/ConvertKit.php

71 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * ConvertKit Extension
4 *
5 * @package NotificationX\Extensions
6 */
7
8 namespace NotificationX\Extensions\ConvertKit;
9
10 use NotificationX\GetInstance;
11 use NotificationX\Extensions\Extension;
12
13 /**
14 * ConvertKit Extension
15 * @method static ConvertKit get_instance($args = null)
16 */
17 class ConvertKit extends Extension {
18 /**
19 * Instance of ConvertKit
20 *
21 * @var ConvertKit
22 */
23 use GetInstance;
24
25 public $priority = 10;
26 public $id = 'convertkit';
27 public $img = NOTIFICATIONX_ADMIN_URL . 'images/extensions/sources/convertkit.png';
28 public $doc_link = 'https://notificationx.com/docs/convertkit-alert/';
29 public $types = 'email_subscription';
30 public $module = 'modules_convertkit';
31 public $module_priority = 15;
32 public $is_pro = true;
33
34 /**
35 * Initially Invoked when initialized.
36 */
37 public function __construct(){
38 parent::__construct();
39 }
40
41 public function init_extension()
42 {
43 $this->title = __('ConvertKit', 'notificationx');
44 $this->module_title = __('ConvertKit', 'notificationx');
45 }
46
47 /**
48 * Get data for ConvertKit Extension.
49 *
50 * @param array $args Settings arguments.
51 * @return array
52 */
53 public function get_data( $args = array() ){
54 return 'Hello From ConvertKit';
55 }
56
57 public function doc(){
58 return sprintf(__('<p>Make sure that you have <a target="_blank" href="%1$s">signed in & retrieved your API key from ConvertKit account</a> to use its campaign & email subscriptions data. For further assistance, check out our step by step <a target="_blank" href="%2$s">documentation</a>.</p>
59 <p>🎦 <a target="_blank" href="%3$s">Watch video tutorial</a> to learn quickly</p>
60 <p>👉 NotificationX <a target="_blank" href="%4$s">Integration with ConvertKit</a></p>
61 <p><strong>Recommended Blog:</strong></p>
62 <p>🔥 Connect <a target="_blank" href="%5$s">NotificationX With ConvertKit</a>: Grow Your Audience By Leveraging Social Proof</p>', 'notificationx'),
63 'https://app.convertkit.com/users/login',
64 'https://notificationx.com/docs/convertkit-alert/',
65 'https://youtu.be/lk_KMSBkEbY',
66 'https://notificationx.com/integrations/convertkit/',
67 'https://wpdeveloper.com/convertkit-social-proof/'
68 );
69 }
70 }
71