MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/sblt.co.in/wp-content/plugins/wp-live-chat-support/includes/shortcodes.php
<?php 

add_filter("init","wplc_test",10,4);

function wplc_test() {
	add_shortcode('wplc_live_chat', 'wplc_live_chat_box_shortcode');
}

function wplc_live_chat_box_shortcode( $atts, $content = null ) {
	$wplc_settings = get_option("WPLC_SETTINGS");
	$logged_in = apply_filters("wplc_loggedin_filter",false);
	$wplc_using_locale = (isset($wplc_settings['wplc_using_localization_plugin']) && $wplc_settings['wplc_using_localization_plugin'] == 1) ? true : false;
	
	$wplc_chat_box_content = wplc_theme_control_function($wplc_settings, $logged_in, $wplc_using_locale, $_COOKIE['wplc_cid']);
	
	// get attributes
	$atts = shortcode_atts( 
		array(
			'style' => 'normal'
		),
		$atts,
		'wplc_live_chat'
	);

	$output = '<div class="wplc_live_chat_support_shortcode wplc_' . $atts['style'] . '">';
	$output  .= $wplc_chat_box_content;
	$output .= '</div">';
	return $output;
}