Updating copyrights. Happy New Year.
[squirrelmail.git] / plugins / squirrelspell / class / common.php
CommitLineData
85dcf0fb 1<?php
2/**
3 * Common spellcheck class functions
c0d96801 4 * @copyright 1999-2012 The SquirrelMail Project Team
85dcf0fb 5 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
6 * @version $Id$
7 * @package plugins
8 * @subpackage squirrelspell
9 */
10
11/**
12 * @package plugins
13 * @subpackage squirrelspell
14 */
15class squirrelspell {
16 var $error = '';
17 /**
18 * @param string $sError error message
19 * @return boolean false
20 */
21 function set_error($sError) {
22 $this->error = $sError;
23 return false;
24 }
25
26 function check_text($sText) {
27 return $this->set_error('check_text method is not implemented in this class.');
28 }
29}