1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Common spellcheck class functions
- * @copyright © 1999-2007 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @version $Id$
- * @package plugins
- * @subpackage squirrelspell
- */
- /**
- * @package plugins
- * @subpackage squirrelspell
- */
- class squirrelspell {
- var $error = '';
- /**
- * @param string $sError error message
- * @return boolean false
- */
- function set_error($sError) {
- $this->error = $sError;
- return false;
- }
- function check_text($sText) {
- return $this->set_error('check_text method is not implemented in this class.');
- }
- }
|