1

com_modules のプラグインを作成しようとしています。これにより、保存がトリガーされるたびにプラグインが保存前と保存後に 2 つのアクティビティを実行する必要があります。

どういうわけかプラグインを作成し、有効化しました。

mywebsite.com/plugins/modules/myplugin.php 
mywebsite.com/plugins/modules/myplugin.xml

しかし、クラスでさえ実行されていません... myplugin.php でエラーを作成しましたが、ウェブサイトにエラーが表示されていません。

この問題を解決する方法を教えてもらえますか、それとも何か間違っていますか?

defined( '_JEXEC' ) or die( 'Restricted access' );
// Load the Joomla Plugin
jimport( 'joomla.plugin.plugin' );


$GLOBALS[context]="com_modules.module";
//ini_set('error_reporting', E_ALL); 
class plgModulesMyplugin extends JPlugin{


// edit here first
    public function onExtensionBeforeSave($context, $table, $isNew)
    {   
4

1 に答える 1