function _phrase_captcha_ordinal in CAPTCHA Pack 7
Same name and namespace in other branches
- 8 text_captcha/modules/phrase_captcha/phrase_captcha.module \_phrase_captcha_ordinal()
- 5 text_captcha/phrase_captcha/phrase_captcha.module \_phrase_captcha_ordinal()
- 6 text_captcha/phrase_captcha/phrase_captcha.inc \_phrase_captcha_ordinal()
Function that returns a textual represention of an ordinal
1 call to _phrase_captcha_ordinal()
- _phrase_captcha_word_question_word_index in text_captcha/
phrase_captcha/ phrase_captcha.module
File
- text_captcha/
phrase_captcha/ phrase_captcha.module, line 150
Code
function _phrase_captcha_ordinal($n) {
$ordinalmap = array(
1 => t('first'),
2 => t('second'),
3 => t('third'),
4 => t('fourth'),
5 => t('fifth'),
6 => t('sixth'),
7 => t('seventh'),
8 => t('eighth'),
9 => t('ninth'),
10 => t('tenth'),
);
if (array_key_exists($n, $ordinalmap)) {
return $ordinalmap[$n];
}
else {
return "{$n}th";
}
}