Source for file common.php

Documentation is available at common.php

  1. <?php
  2. /**
  3.  * Common spellcheck class functions
  4.  * @copyright 1999-2020 The SquirrelMail Project Team
  5.  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  6.  * @version $Id: common.php 14845 2020-01-07 08:09:34Z pdontthink $
  7.  * @package plugins
  8.  * @subpackage squirrelspell
  9.  */
  10.  
  11. /**
  12.  * @package plugins
  13.  * @subpackage squirrelspell
  14.  */
  15. class 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. }

Documentation generated on Mon, 13 Jan 2020 04:22:04 +0100 by phpDocumentor 1.4.3