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 / Vimeo / Vimeo.php

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

46 lines 1010 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Vimeo Extension
4 *
5 * @package NotificationX\Extensions
6 */
7
8 namespace NotificationX\Extensions\Vimeo;
9
10 use NotificationX\GetInstance;
11 use NotificationX\Extensions\Extension;
12
13 /**
14 * Vimeo Extension
15 * @method static Vimeo get_instance($args = null)
16 */
17 class Vimeo extends Extension {
18 /**
19 * Instance of Vimeo
20 *
21 * @var Vimeo
22 */
23 use GetInstance;
24
25 public $priority = 10;
26 public $id = 'vimeo';
27 public $doc_link = 'https://notificationx.com/docs/google-reviews-with-notificationx/';
28 public $types = 'video';
29 public $img = NOTIFICATIONX_ADMIN_URL . 'images/extensions/sources/vimeo.png';
30 public $show_on_module = false;
31 public $show_on_type = false;
32
33 /**
34 * Initially Invoked when initialized.
35 */
36 public function __construct(){
37 parent::__construct();
38 }
39
40 public function init_extension()
41 {
42 $this->title = __('Vimeo', 'notificationx');
43 }
44
45 }
46