我正在尝试创建一个 Joomla 1.7 内容插件,最终将在后端创建全新文章时发送电子邮件。我的插件虽然安装正确,但似乎没有正确触发。我通过插件进行了修改,以便在创建新文章时取消保存事件并改为显示错误消息。这没有发生,并且文章保存得很好。我在这里遗漏了一些明显的东西吗?我什至尝试在方法中添加一个die()
andmail()
命令onBeforeContentSave()
,但它从未被执行。
通知.xml
<?xml version="1.0" encoding="utf-8"?>
<extension version="1.7" type="plugin" group="content">
<name>Content - Notifyy</name>
<author>Andy Soell</author>
<creationDate>August 1, 2011</creationDate>
<copyright></copyright>
<authorEmail>my@email.com</authorEmail>
<authorUrl>http://andy.teamsoell.com</authorUrl>
<version>1.0</version>
<description>Notification for new articles</description>
<files>
<filename plugin="notifyy">notifyy.php</filename>
</files>
</extension>
通知.php
jimport( 'joomla.plugin.plugin' );
class plgContentNotifyy extends JPlugin {
function plgContentNotifyy( &$subject, $params )
{
parent::__construct( $subject, $params );
}
function onBeforeContentSave( &$article, $isNew )
{
global $mainframe;
$article->setError("i don't want to save this");
return false;
}
}