| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/www/cj79373/plugins/system/customhead/ |
Upload File : |
<?php
/*
------------------------------------------------------------------------
Extension for Joomla 2.5.x - Joomla 3.x
------------------------------------------------------------------------
Copyright (C) 2018 Inteldig INC.
License: GNU General Public License version 2 or later; see LICENSE.txt
Author: IntelDig
Website: http://www.chatcompose.com
Modified: 18/11/2018
------------------------------------------------------------------------
*/
defined('_JEXEC') or die('No direct access');
jimport('joomla.plugin.plugin');
class plgSystemCustomhead extends JPlugin{
function onBeforeCompileHead() {
if (JFactory::getApplication()->isAdmin()){
return true;
}
$doc = JFactory::getDocument();
$customhead = $this->params->get('customhead');
if (strlen($customhead) > 0) { $doc->addCustomTag('<link href="https://admin.chatcompose.com/static/FR/global/export/css/main.497ebf60.css" rel="stylesheet"><script async type="text/javascript" src="https://admin.chatcompose.com/static/FR/global/export/js/main.bd0c3474.js" user="'.$customhead.'"></script>'); }
}
}