golden hour
/home/godaofbq/drhyperbaric.com/wp-content/plugins/notificationx/includes/Extensions/Vimeo
⬆️ Go Up
Upload
File/Folder
Size
Actions
Vimeo.php
956 B
Del
OK
Edit: Vimeo.php
<?php /** * Vimeo Extension * * @package NotificationX\Extensions */ namespace NotificationX\Extensions\Vimeo; use NotificationX\GetInstance; use NotificationX\Extensions\Extension; /** * Vimeo Extension * @method static Vimeo get_instance($args = null) */ class Vimeo extends Extension { /** * Instance of Vimeo * * @var Vimeo */ use GetInstance; public $priority = 10; public $id = 'vimeo'; public $doc_link = 'https://notificationx.com/docs/google-reviews-with-notificationx/'; public $types = 'video'; public $img = NOTIFICATIONX_ADMIN_URL . 'images/extensions/sources/vimeo.png'; public $show_on_module = false; public $show_on_type = false; /** * Initially Invoked when initialized. */ public function __construct(){ $this->title = __('Vimeo', 'notificationx'); parent::__construct(); } }
Save