我已经使用以下代码在 Joomla 2.5 中创建并成功安装了一个插件
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
class plgCustomFunctions extends JPlugin
{
public function onContentPrepare($context, &$article, &$params, $page = 0)
{
$article->title = "Something!";
return true;
}
}?>
我的理解是,这应该覆盖每篇文章的标题。那没有发生。我错过了什么?