golden hour
/home/godaofbq/drhyperbaric.com/wp-content/plugins/notificationx/includes/Extensions/Envato
⬆️ Go Up
Upload
File/Folder
Size
Actions
Envato.php
2.7 KB
Del
OK
Edit: Envato.php
<?php /** * Envato Extension * * @package NotificationX\Extensions */ namespace NotificationX\Extensions\Envato; use NotificationX\GetInstance; use NotificationX\Extensions\Extension; /** * Envato Extension * @method static Envato get_instance($args = null) */ class Envato extends Extension { /** * Instance of Envato * * @var Envato */ use GetInstance; public $priority = 25; public $id = 'envato'; public $img = NOTIFICATIONX_ADMIN_URL . 'images/extensions/sources/envato.png'; public $doc_link = 'https://notificationx.com/docs/envato-sales-notification'; public $types = 'conversions'; public $module = 'modules_envato'; public $module_priority = 17; public $is_pro = true; public $version = '1.2.0'; /** * Initially Invoked when initialized. */ public function __construct(){ $this->title = __('Envato', 'notificationx'); $this->module_title = __('Envato', 'notificationx'); $this->popup = [ "denyButtonText" => __("<a href='https://notificationx.com/docs/envato-sales-notification/' target='_blank'>More Info</a>", "notificationx"), "confirmButtonText" => __("<a href='https://notificationx.com/#pricing' target='_blank'>Upgrade to PRO</a>", "notificationx"), "html"=> __(' <span>A resourceful online marketplace for digital assets and services.</span> <iframe id="email_subscription_video" type="text/html" allowfullscreen width="450" height="235" src="https://www.youtube.com/embed/-df_6KHgr7I"> </iframe> ', 'notificationx') ]; parent::__construct(); } /** * Get data for Envato Extension. * * @param array $args Settings arguments. * @return array */ public function get_data( $args = array() ){ return 'Hello From Custom Notification'; } public function doc(){ return sprintf(__('<p>Make sure that you have <a target="_blank" href="%1$s">created & signed in to Envato account</a> to use its campaign & product sales data. For further assistance, check out our step by step <a target="_blank" href="%2$s">documentation</a>.</p> <p>🎦 <a target="_blank" href="%3$s">Watch video tutorial</a> to learn quickly</p> <p>👉 NotificationX <a target="_blank" href="%4$s">Integration with Envato</a></p>', 'notificationx'), 'https://account.envato.com/sign_in?to=envato-api', 'https://notificationx.com/docs/envato-sales-notification/', 'https://youtu.be/-df_6KHgr7I', 'https://notificationx.com/integrations/envato/' ); } }
Save