| | |
| | | |
| | | |
| | | /** |
| | | * Returns mispelled words |
| | | * Returns misspelled words |
| | | * |
| | | * @param string $text The content for spellchecking. If empty content |
| | | * used for check() method will be used. |
| | | * |
| | | * @return array List of mispelled words |
| | | * @return array List of misspelled words |
| | | */ |
| | | function get_words($text = null, $is_html=false) |
| | | { |
| | |
| | | |
| | | |
| | | /** |
| | | * Returns checking result (mispelled words with suggestions) |
| | | * Returns checking result (misspelled words with suggestions) |
| | | * |
| | | * @return array Spellchecking result. An array indexed by word. |
| | | */ |
| | |
| | | |
| | | |
| | | /** |
| | | * Returns the mispelled words |
| | | * Returns the misspelled words |
| | | */ |
| | | private function _pspell_words($text = null, $is_html=false) |
| | | { |
| | |
| | | return array(); |
| | | } |
| | | |
| | | // With PSpell we don't need to get suggestions to return mispelled words |
| | | // With PSpell we don't need to get suggestions to return misspelled words |
| | | if ($is_html) { |
| | | $text = $this->html2text($text); |
| | | } |
| | |
| | | |
| | | |
| | | /** |
| | | * Returns suggestions for mispelled word |
| | | * Returns suggestions for misspelled word |
| | | */ |
| | | private function _pspell_suggestions($word) |
| | | { |