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

StackOverflow https://stackoverflow.com/questions/19225816

  •  30-06-2022
  •  | 
  •  

문제

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

도움이 되었습니까?

해결책

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');
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top