0

我正在开发一个插件(仍然是 2.5 开发的新手),但不知何故,我什至没有让野兽做最基本的事情 - 似乎它根本没有启动。但是,PHP 的解析器错误显示在前端,但是当触发此代码时,什么也没有发生 - 屏幕上或我的日志文件中都没有显示任何诊断消息...

问题出在哪里?

        <?php
    defined( '_JEXEC' ) or die( 'Restricted access' );

    jimport('joomla.plugin.plugin');

    class plgContentSIMPLE_Plugin extends JPlugin
    {
            function plgContentSIMPLE_Plugin( &$subject , $config ) {
                      echo "constructor!";
                parent::__construct( $subject , $config );
            }


            function onPrepareContent ($article , $params, $limitstart)
            {
                  oBDC ("oPC",$article , $params, $limitstart);
                }       

            function onBeforeDisplayContent ($article , $params, $limitstart)
            {
                  oBDC ("oBDC",$article , $params, $limitstart);
             }

           function onAfterDisplayContent ($article , $params, $limitstart)
            {
                  oBDC ("oADC",$article , $params, $limitstart);
             }

             function oBDC($whoscalling,$article , $params, $limitstart)
            {
                      echo "whoscalling = " . $whoscalling;
                      $myFile = "./obdc.log";
                      $fh = fopen($myFile, 'a'); // or die("can't open file");
                      $stringData = "\n whoscalling = " . $whoscalling;
                      fwrite($fh, $stringData);
                      fclose($fh);
             }

}
4

2 回答 2

1

你是如何安装插件的?你读过 Joomla 插件教程吗?这是一个很好的教程,请先尝试使其工作-

https://www.inmotionhosting.com/support/edu/joomla-25/create-plugin

于 2013-01-22T21:19:46.673 回答
0

Several issues:

  1. Naming conventions: class plgContentSimple extends JPlugin { function __construct( &$subject , $config ) {
  2. Event is called "onContentAfterDisplay"...
于 2013-01-23T09:07:56.407 回答