getVal( 'wpCaptchaAnswer' ) == (int)$info['answer'];
}
/** Produce a nice little form */
function getForm() {
list( $sum, $answer ) = $this->pickSum();
$index = $this->storeCaptcha( array( 'answer' => $answer ) );
$form = '
' . $this->fetchMath( $sum ) . ' | ';
$form .= '' . wfInput( 'wpCaptchaAnswer', false, false, array( 'tabindex' => '1' ) ) . ' |
';
$form .= wfHidden( 'wpCaptchaId', $index );
return $form;
}
/** Pick a random sum */
function pickSum() {
$a = mt_rand( 0, 100 );
$b = mt_rand( 0, 10 );
$op = mt_rand( 0, 1 ) ? '+' : '-';
$sum = "{$a} {$op} {$b} = ";
$ans = $op == '+' ? ( $a + $b ) : ( $a - $b );
return array( $sum, $ans );
}
/** Fetch the math */
function fetchMath( $sum ) {
$math = new MathRenderer( $sum );
$math->setOutputMode( MW_MATH_PNG );
$html = $math->render();
return preg_replace( '/alt=".*"/', '', $html );
}
}
?>