Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将模板 2.5 升级到 3.0,模板升级但出现以下错误。
致命错误:在第 xxx 行的模板/主题/index.php 中找不到类“JParameter”
JParameter在 Joomla 3.0 中被删除,现在应该使用JForm或者在大多数情况下JRegistry应该使用。
JParameter
JForm
JRegistry
所以使用以下代码,并根据自己的需要进行更改
$jparams = new JRegistry(); $variable = $jparams->get('param_name');