| Server IP : 144.76.79.100 / Your IP : 216.73.216.103 [ Web Server : Apache System : Linux ch05.wehostwebserver.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64 User : razzlestore ( 1092) PHP Version : 8.2.29 Disable Function : NONE Domains : 343 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/oxyind/public_html/wp-content/plugins/wp-whatsapp/includes/ |
Upload File : |
<?php
namespace NTA_WhatsApp;
use NTA_WhatsApp\Fields;
defined('ABSPATH') || exit;
class Shortcode
{
protected static $instance = null;
protected $accountID;
public static function getInstance()
{
if (null == self::$instance) {
self::$instance = new self;
self::$instance->doHooks();
}
return self::$instance;
}
private function doHooks(){
add_shortcode('njwa_button', [$this, 'button_shortcode']);
}
public function button_shortcode($id)
{
extract($id);
$displayOption = Fields::getWidgetDisplay();
$stylesOption = Fields::getWidgetStyles();
$analyticsOption = Fields::getAnalyticsSetting();
$script = array(
'name' => get_the_title($id),
'info' => get_post_meta($id, 'nta_wa_account_info', true),
'styles' => Fields::getButtonStyles($id),
'avatar' => get_the_post_thumbnail_url($id),
'options' => [
'display' => $displayOption,
'styles' => $stylesOption,
'analytics' => $analyticsOption
],
'gdprStatus' => Helper::checkGDPR($stylesOption),
'defaultAvatar' => NTA_WHATSAPP_PLUGIN_URL . 'assets/img/whatsapp_logo.svg'
);
$content = '<div class="nta_wa_button" data-id="' . esc_attr($id) . '" data-info="' . esc_attr(json_encode($script)) . '"></div>';
return $content;
}
}