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 に答える