我正在使用 Joomla 的 Community Builder 模块,我在源代码中看到onAfterUserRegistration
触发了事件。所以我尝试为这个事件开发一个插件。这是我所做的:
<?php
defined('_JEXEC') or die( 'Restricted access' );
jimport('joomla.plugin.plugin');
class plgUserRegistration extends JPlugin
{
function plgUserRegistration($subject, $config)
{
parent::__construct($subject, $config);
}
function onAfterUserRegistration()
{
//Do some stuff here !
}
}
但是我的代码从未被调用过,如果有人有任何线索,我也无法弄清楚为什么!