Code
function quickcheck_admin_newTextQuest($args) {
if (!SecurityUtil::checkPermission('quickcheck::', '::', ACCESS_ADD)) {
return DataUtil::formatForDisplayHTML(_MODULENOAUTH);
}
$pnForm = FormUtil::newpnForm('Quickcheck');
return $pnForm->execute('quickcheck_admin_new_text_question.htm', new quickcheck_admin_newTextQuestionHandler());
}
if (!SecurityUtil::checkPermission('quickcheck::', '::', ACCESS_ADD)) {
return DataUtil::formatForDisplayHTML(_MODULENOAUTH);
}
$pnForm = FormUtil::newpnForm('Quickcheck');
return $pnForm->execute('quickcheck_admin_new_text_question.htm', new quickcheck_admin_newTextQuestionHandler());
}
It now gives me this error in the phplog file.
PHP Fatal error: Call to undefined method quickcheck_admin_newTextQuestionHandler::setView() in /Applications/MAMP/htdocs/zikula_1_3/lib/Form/View.php on line 168
Any ideas? Thanks in advance
