Server : LiteSpeed System : Linux server 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : alsaif ( 1057) PHP Version : 7.4.33 Disable Function : show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/alsaif/public_html/modules/mod_ebwhatsappchat/tmpl/ |
<?php
/**
* @package Module EB Whatsapp Chat for Joomla!
* @version 2.1: mod_ebwhatsappchat.php Feb 2024
* @author url: https://www/extnbakers.com
* @copyright Copyright (C) 2021 extnbakers.com. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
$mdl_path = JURI::base().'modules/'.$module->module;
$document = JFactory::getDocument();
$document->addStyleSheet($mdl_path.'/assets/css/whatapp_style.css');
if (!defined('SMART_JQUERY') && $params->get('include_jquery', 0) == "1") {
JHtml::script('https://code.jquery.com/jquery-1.12.4.min.js');
JHtml::script($mdl_path.'/assets/js/jquery-noconflict.js');
define('SMART_JQUERY', 1);
}
$module_id= $module->id;
$open_dekstop_app = $params->get('open_dekstop_app', '0');
$wsac_mbln = isset($whatsapp['whatsapp_number'])?$whatsapp['whatsapp_number']:'';
$wsac_intmsg = isset($whatsapp['initial_message'])?$whatsapp['initial_message']:'';
$wsac_icnpst = isset($whatsapp['icon_position'])?$whatsapp['icon_position']:'bottom_right';
$wsac_dsplytxt = isset($whatsapp['icon_withtext'])?$whatsapp['icon_withtext']:'';
$wsac_bgcolor = ($whatsapp['backgroundcolor']!='')?$whatsapp['backgroundcolor']:'#e4e4e4';
$wsac_txtcolor = ($whatsapp['textcolor']!='')?$whatsapp['textcolor']:'#000000';
$wsac_icnimg = isset($whatsapp['icon_image'])?$whatsapp['icon_image']:'';
$wsac_uplicnimg = isset($whatsapp['upload_iconimg'])?$whatsapp['upload_iconimg']:'';
$wsac_heading_option = isset($whatsapp['heading_option'])?$whatsapp['heading_option']:'';
$wsac_heading_content = isset($whatsapp['heading_content'])?$whatsapp['heading_content']:'';
$wsac_heading_name = isset($whatsapp['heading_name'])?$whatsapp['heading_name']:'';
$wsac_heading_department = isset($whatsapp['heading_department'])?$whatsapp['heading_department']:'';
$wsac_heading_image = isset($whatsapp['heading_image'])?$whatsapp['heading_image']:'';
$wsac_heading_image_img = $wsac_heading_image != '' ? $wsac_heading_image : $mdl_path.'/assets/images/contact-img.png';
$wsac_middle_content = isset($whatsapp['middle_content'])?$whatsapp['middle_content']:'';
$url_msg = '';
if($wsac_intmsg != ''){
$url_msg = '&text='.$wsac_intmsg;
}
$url_redirect = "https://web.whatsapp.com/send?phone=$wsac_mbln".$url_msg;
if($wsac_icnimg == "style_1"){
$icon_img = $mdl_path."/assets/images/whatsapp_icon_1.png";
} else if($wsac_icnimg == "style_2"){
$icon_img = $mdl_path."/assets/images/whatsapp_icon_2.png";
} else if($wsac_icnimg == "style_3"){
$icon_img = $mdl_path."/assets/images/whatsapp_icon_3.png";
} else if($wsac_icnimg == "style_4"){
$icon_img = $mdl_path."/assets/images/whatsapp_icon_4.png";
} else if($wsac_icnimg == "style_5"){
$icon_img = $mdl_path."/assets/images/whatsapp_icon_5.png";
} else if($wsac_icnimg == "upload_icon" && $wsac_uplicnimg == ''){
$icon_img = $mdl_path."/assets/images/whatsapp_icon_1.png";
} else if ($wsac_icnimg == "upload_icon" && $wsac_uplicnimg != ''){
$icon_img = $wsac_uplicnimg;
} else {
$icon_img = "";
} ?>
<style type="text/css">
<?php if($wsac_icnpst == 'top_left'){ ?>
.whatsappchat_<?php echo $module_id; ?> .popup-section .popup .myPopup_<?php echo $module_id; ?>::after { border-color: transparent transparent <?php echo $wsac_bgcolor; ?> transparent; }
<?php } else if($wsac_icnpst == 'top_right'){ ?>
.whatsappchat_<?php echo $module_id; ?> .popup-section .popup .myPopup_<?php echo $module_id; ?>::after { border-color: transparent transparent <?php echo $wsac_bgcolor; ?> transparent; }
<?php } else if($wsac_icnpst == 'bottom_left'){ ?>
.whatsappchat_<?php echo $module_id; ?>.is-bottom_left .popup-section .popup .myPopup_<?php echo $module_id; ?>::after { border-color: <?php echo $wsac_bgcolor; ?> transparent transparent transparent; }
<?php } else if($wsac_icnpst == 'bottom_right'){ ?>
.whatsappchat_<?php echo $module_id; ?>.is-bottom_right .popup-section .popup .myPopup_<?php echo $module_id; ?>::after { border-color: <?php echo $wsac_bgcolor; ?> transparent transparent transparent; }
<?php } ?>
.whatsappchat .popup-section h3 { color: <?php echo $wsac_txtcolor ?> }
</style>
<div class="is_<?php echo $wsac_icnpst; ?> whatsappchat_<?php echo $module_id; ?> whatsappchat is-<?php echo $wsac_icnpst; ?>">
<div class="popup-section">
<div class="popup">
<?php if($wsac_icnimg == "upload_icon"){ ?>
<span class="help_btn_<?php echo $module_id; ?> help-you-btn" style="background: unset;box-shadow: unset;">
<img src="<?php echo $icon_img; ?>">
</span>
<?php } else {
if($wsac_dsplytxt ==''){ ?>
<span class="help_btn_<?php echo $module_id; ?> help-you-btn" style="background: unset;box-shadow: unset;">
<?php if($icon_img!=''){ ?><img src="<?php echo $icon_img; ?>"><?php } ?>
</span>
<?php } else { ?>
<span class="help_btn_<?php echo $module_id; ?> help-you-btn" style="background-color: <?php echo $wsac_bgcolor ?>; color: <?php echo $wsac_txtcolor ?>">
<?php if($icon_img!=''){ ?><img src="<?php echo $icon_img; ?>" class="is-analytics" id="text_iconimg" alt="WhatsApp" /><?php } ?>
<?php echo $wsac_dsplytxt ?>
</span>
<?php } ?>
<?php } ?>
<span class="myPopup_<?php echo $module_id; ?> popuptext" id="myPopup">
<div class="popup-box">
<div class="popup-top" style="background-color: <?php echo $wsac_bgcolor ?>; color: <?php echo $wsac_txtcolor ?>">
<?php if($wsac_heading_option == 'username_image'){ ?>
<div class="image">
<img src="<?php echo $wsac_heading_image_img; ?>" >
</div>
<div class="content">
<?php if($wsac_heading_name!=''){ ?><span class="name"><?php echo $wsac_heading_name; ?></span><?php } ?>
<?php if($wsac_heading_department!=''){ ?><span class="label" style="color: <?php echo $wsac_bgcolor ?>; background-color: <?php echo $wsac_txtcolor ?>;"><?php echo $wsac_heading_department; ?></span><?php } ?>
</div>
<?php } else { ?>
<div class="content">
<?php echo $wsac_heading_content; ?>
</div>
<?php } ?>
<div class="close_pop_wtc">
<svg viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg><circle cx="20" cy="20" r="20" fill="rgb(146, 148, 150)"></circle><path d="M26.2997 13.71C25.9097 13.32 25.2797 13.32 24.8897 13.71L19.9997 18.59L15.1097 13.7C14.7197 13.31 14.0897 13.31 13.6997 13.7C13.3097 14.09 13.3097 14.72 13.6997 15.11L18.5897 20L13.6997 24.89C13.3097 25.28 13.3097 25.91 13.6997 26.3C14.0897 26.69 14.7197 26.69 15.1097 26.3L19.9997 21.41L24.8897 26.3C25.2797 26.69 25.9097 26.69 26.2997 26.3C26.6897 25.91 26.6897 25.28 26.2997 24.89L21.4097 20L26.2997 15.11C26.6797 14.73 26.6797 14.09 26.2997 13.71Z" fill="rgb(43, 43, 43)"></path></svg>
</div>
</div>
<?php if($wsac_middle_content!=''){ ?>
<div class="chat-content">
<div class="message">
<?php echo $wsac_middle_content; ?>
</div>
</div>
<?php } ?>
<div class="response">
<input type="text" name="text" id="response_text_<?php echo $module_id; ?>" placeholder="<?php echo JText::_('WHATSAPP_RESPONESE_PLACEHOLDER'); ?>">
<a href="javascript:void(0);" class="submit_btn_<?php echo $module_id; ?> send_btn"><img src="<?php echo $mdl_path.'/assets/images/send-img.png'; ?>"></a>
</div>
</div>
</span>
</div>
</div>
</div>
<script>
jQuery(".is_<?php echo $wsac_icnpst; ?> .help_btn_<?php echo $module_id; ?>").click(function(){
jQuery(".is_<?php echo $wsac_icnpst; ?> .popup-section .popup .myPopup_<?php echo $module_id; ?>").toggleClass("show");
});
jQuery(".myPopup_<?php echo $module_id; ?> .close_pop_wtc").click(function(){
jQuery(".is_<?php echo $wsac_icnpst; ?> .popup-section .popup .myPopup_<?php echo $module_id; ?>").toggleClass("show");
});
</script>
<script type="text/javascript">
jQuery( ".response .submit_btn_<?php echo $module_id; ?>" ).click(function() {
var r_text = jQuery('#response_text_<?php echo $module_id; ?>').val();
// alert(r_text);
if(r_text != ''){
wsac_msg = r_text;
} else {
wsac_msg = "<?php echo $wsac_intmsg; ?>";
}
var initial_msg = "&text="+wsac_msg;
var initial_msg_for_phone = "?text="+wsac_msg;
// alert(initial_msg);
var phone_number = "<?php echo $wsac_mbln; ?>";
var open_dekstop_app = "<?php echo $open_dekstop_app; ?>";
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
if(/Opera Mini|safari|firefox/i.test(navigator.userAgent) )
var href = "https://api.whatsapp.com/send?phone="+phone_number+""+initial_msg;
else
var href = "https://wa.me/"+phone_number+""+initial_msg;
} else {
if(open_dekstop_app==1){
var href = "https://api.whatsapp.com/send?phone="+phone_number+""+initial_msg;
}else{
var href = "https://web.whatsapp.com/send?phone="+phone_number+""+initial_msg;
}
}
// alert(href);
window.open(href, '_blank');
});
</script>
<script type="text/javascript">
jQuery( document ).ready(function() {
var icon_position = "<?php echo $wsac_icnpst; ?>";
var clslng = jQuery('body').find('.is_<?php echo $wsac_icnpst; ?>').length;
// console.log(clslng);
if(clslng != 0){
var sum = 0;
var ssum = 50;
jQuery(function(){
jQuery(".is_<?php echo $wsac_icnpst; ?>").each(function(i){
if(i == 0){ sum = sum + 15;
} else { sum= 35; sum += ssum; }
if(icon_position == "bottom_left" || icon_position == "bottom_right"){
jQuery(this).css('bottom', sum+'px');
}
if(icon_position == "top_left" || icon_position == "top_right"){
jQuery(this).css('top', sum+'px');
}
});
});
}
});
</script>