我正在开发一个Joomla插件。不幸的是,没有解雇必要的事件。这意味着永远不会执行以下代码:
public function onContentAfterSave($context, &$article, $isNew)
{
....
}
我像往常一样开发了这个插件。所有其他使用的事件都可以。 这可能是一个内部的Joomla \ PHP错误,还是我错过了什么?
Apache / 2.2.4(Win32)mod_ssl / 2.2.4 OpenSSL / 0.9.8k PHP / 5.3.3
的Joomla! 2.5.4稳定[Ember] 2012年4月2日14:00 GMT
答案 0 :(得分:4)
.xml文件中的插件名称与.php文件中的插件名称之间可能存在不匹配的内容。
<?php
defined('_JEXEC') or die;
jimport('joomla.event.plugin'); // I've also seen joomla.plugin.plugin.
// Perhaps and older version
class plg[PluginGroup][PluginName]
{
public function onContentAfterSave( $context, &$article, $isNew )
{
// $db = JFactory::GetDBO();
// etc...
}
}
?>
<?xml version="1.0" encoding="UTF-8"?>
<extension type="plugin" version="2.5.0" group="[PluginGroup]">
<name>[PluginName]</name>
<version>0.0.1</version>
<author></author>
<creationDate></creationDate>
<copyright></copyright>
<license></license>
<authorEmail></authorEmail>
<authorUrl></authorUrl>
<description></description>
<files>
<filename plugin="[PluginName]">[PluginName].php</filename>
<filename>[PluginName].xml</filename>
<filename>index.html</filename>
</files>
</extension>
否则,请发布更多信息:
答案 1 :(得分:0)
你肯定是安装并启用了该插件吗?特别是很容易忘记后者。