Good day!
I really like this plugin, but I would like to see only 2 possible scores: Passed & Failed, the user must get above 90% in order to pass.
I would really appreciate some help with this.
The original code looks like this:
//Find scoring details of this guy.
$percent = number_format($score / $total * 100, 2);
//0-9 10-19%, 20-29%, 30-39% 40-49%
$all_rating = array(t('Failed'), t('Failed'), t('Failed'), t('Failed'), t('Just Passed'),
// 100% More than 100%?!
t('Satisfactory'), t('Competent'), t('Good'), t('Very Good'),t('Excellent'), t('Unbeatable'), t('Cheater'));
$grade = intval($percent / 10);
if($percent == 100) $grade = 9;
if($score == $total) $grade = 10;
$rating = $all_rating[$grade];