|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00010 class SpellChecker { 00016 function SpellChecker(&$config) { 00017 $this->_config = $config; 00018 } 00019 00026 function &loopback(/* args.. */) { 00027 return func_get_args(); 00028 } 00029 00037 function &checkWords($lang, $words) { 00038 return $words; 00039 } 00040 00048 function &getSuggestions($lang, $word) { 00049 return array(); 00050 } 00051 00057 function throwError($str) { 00058 die('{"result":null,"id":null,"error":{"errstr":"' . addslashes($str) . '","errfile":"","errline":null,"errcontext":"","level":"FATAL"}}'); 00059 } 00060 } 00061 00062 ?>