Joomla插件将Javascript代码段注入所有页面

时间:2018-06-29 13:49:52

标签: php plugins joomla joomla-extensions

我正在尝试编写一个Joomla插件,该插件将一个小的javascript代码注入所有页面以分发给其他人。但是我读过的所有内容都说我应该使用$doc = JFactory::getDocument();来执行此操作,但是我无法使其正常工作。

这是我要使用的代码,Joomla表示一切正常,但是一旦激活,如果我转到自己网站的首页,我的javascript代码段将不会添加到页面源中。

>

当前代码:

bwai.xml

<?xml version="1.0" encoding="utf-8"?>
<extension version="3.0" type="plugin" group="system" method="upgrade">
    <name>Beacon Web Analytics Intergration for Joomla</name>
    <creationDate>June 2018</creationDate>
    <author>Beaconsoft Limited</author>
    <authorEmail>contact@thisisbeaon.com</authorEmail>
    <authorUrl>https://www.thisisbeacon.com</authorUrl>
    <copyright>Beaconsoft Limited 2018</copyright>
    <license>BSD new</license>
    <version>1.0.0</version>
    <description>This plugin enables the Beacon Web Analytics Intelligence to run on your site, this information will not be saved unless you have an account for Beacon.</description>

    <files folder="site">
        <filename plugin="bwai">index.php</filename>
        <filename>index.html</filename>
    </files>
    <administration>
    </administration>
</extension>

index.php

<?php
defined('_JEXEC') or die('No direct access');
die("hello");
jimport('joomla.plugin.plugin');

class plgSystemCustomhead extends JPlugin{
    function onBeforeCompileHead() {
        die("hello hello");
        /*if (JFactory::getApplication()->isAdmin()){
            return true;
        }*/
        $doc = JFactory::getDocument();
        $doc->addScriptDeclaration('
            (function(a, d, w){
                var h= d.getElementsByTagName(a[0])[0]; var s= d.createElement(a[1]);
                s.setAttribute("type", a[2]); s.setAttribute("src", a[3]); s.setAttribute(a[4], true); s.setAttribute(a[5], a[6]); h.appendChild(s);
            })(["head", "script", "text/javascript", "//tracker.thisisbeacon.com/tracker/", "async", "rel", "preload"], document, window);

        ', 'text/javascript'); 
    }
}
?>

我要做的就是安装一个可以让我们将跟踪javascript代码段添加到Joomla网站前端所有页面的小插件。

exit('hello hello');添加到函数的顶部我也尝试将die("hello");添加到未执行的define或die语句下的文件顶部,但是Joomla报告扩展为活动状态,正如你在上面看到的 Joomlad Plugins Plugin Settings page in Joomla

1 个答案:

答案 0 :(得分:1)

将index.php重命名为bwai.php,并在xml中编写

<filename plugin="bwai">bwai.php</filename>

然后您的类名称应与插件名称匹配,并为PlgSystemBwai