Your IP : 216.73.216.84


Current Path : /home/helpink/www/modules/mod_gtranslate/field/
Upload File :
Current File : /home/helpink/www/modules/mod_gtranslate/field/livechat.php

<?php
/**
* @version   $Id$
* @package   GTranslate
* @copyright Copyright (C) 2008-2023 GTranslate Inc. All rights reserved.
* @license   GNU/GPL v3 http://www.gnu.org/licenses/gpl.html
*/

defined('_JEXEC') or die('Restricted access');

jimport('joomla.form.formfield');

class JFormFieldLiveChat extends JFormField {

    protected $type = 'live_chat';

    public function getLabel() {
        return '';
    }

    public function getValue() {
        return '';
    }

    public function getInput() {

        $user = JFactory::getUser();
        $name = addslashes($user->name);
        $website = addslashes(JURI::root());

        $live_chat = <<<EOM
<script>window.intercomSettings = {app_id: "r70azrgx", hide_default_launcher: false, 'name': '{$name}', 'website': '{$website}', 'platform': 'joomla'};</script>
<script src="https://js.intercomcdn.com/shim.latest.js"></script>
EOM;
        return $live_chat;
    }
}