Fatal error: Class 'JParameter' not found in template/theme/index.php on line xxx

本小妞迷上赌 提交于 2019-12-07 02:48:31

问题


i upgrade template 2.5 to 3.0, template upgrade but come the following error.

Fatal error: Class 'JParameter' not found in template/theme/index.php on line xxx


回答1:


JParameter was removed in Joomla 3.0 and now either JForm or in most cases JRegistry should be used.

So use the following code, and change to suit your own needs

$jparams = new JRegistry();
$variable = $jparams->get('param_name');


来源:https://stackoverflow.com/questions/19225816/fatal-error-class-jparameter-not-found-in-template-theme-index-php-on-line-xx

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!