joomla – 致命错误:在xxx行的template / theme / index.php中找不到类’JParameter’

前端之家收集整理的这篇文章主要介绍了joomla – 致命错误:在xxx行的template / theme / index.php中找不到类’JParameter’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
升级模板2.5到3.0,模板升级,但出现以下错误.

致命错误:在xxx行的template / theme / index.PHP中找不到类’JParameter’

在Joomla 3.0中删除了JParameter,现在要么使用JForm,要么在大多数情况下使用JRegistry.

因此,请使用以下代码,并根据自己的需要进行更改

$jparams = new JRegistry();
$variable = $jparams->get('param_name');
原文链接:https://www.f2er.com/php/132851.html

猜你在找的PHP相关文章