PluginProbe
NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar / trunk
NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar vtrunk
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 / Freemius / FreemiusStats.php

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

60 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Freemius Extension
4 *
5 * @package NotificationX\Extensions
6 */
7
8 namespace NotificationX\Extensions\Freemius;
9
10 use NotificationX\GetInstance;
11 use NotificationX\Extensions\Extension;
12
13 /**
14 * FreemiusStats Extension
15 * @method static FreemiusStats get_instance($args = null)
16 */
17 class FreemiusStats extends Extension {
18 /**
19 * Instance of Freemius
20 *
21 * @var Freemius
22 */
23 use GetInstance;
24 use Freemius;
25
26 public $priority = 10;
27 public $id = 'freemius_stats';
28 public $types = 'download_stats';
29 public $img = NOTIFICATIONX_ADMIN_URL . 'images/extensions/sources/freemius.png';
30 public $doc_link = 'https://notificationx.com/docs/freemius-sales-notification/';
31 public $module = 'modules_freemius';
32 public $is_pro = true;
33 public $module_priority = 12;
34
35 /**
36 * Initially Invoked when initialized.
37 */
38 public function __construct(){
39 parent::__construct();
40 }
41
42 public function init_extension()
43 {
44 $this->title = __('Freemius', 'notificationx');
45 $this->module_title = __('Freemius', 'notificationx');
46 $this->popup = [
47 "showCloseButton" => false,
48 "denyButtonText" => '',
49 "confirmButtonText" => __("<a href='https://notificationx.com/#pricing' target='_blank'>Upgrade to PRO</a>", "notificationx"),
50 "html"=> __('
51 <span>Amazing platform to display download statistics to urge visitors to trust your items.</span>
52 <iframe id="email_subscription_video" type="text/html" allowfullscreen width="450" height="235"
53 src="https://www.youtube.com/embed/0uANsOSFmtw">
54 </iframe>
55 ', 'notificationx')
56 ];
57 }
58
59 }
60