コード例 #1
0
ファイル: javascript.php プロジェクト: ayuinc/laboratoria-v2
 /**
  * Spellcheck
  *
  * Used by the Spellcheck crappola
  *
  * @access	public
  * @return	void
  */
 function spellcheck()
 {
     $this->output->enable_profiler(FALSE);
     if (!class_exists('EE_Spellcheck')) {
         require APPPATH . 'libraries/Spellcheck.php';
     }
     return EE_Spellcheck::check();
 }
コード例 #2
0
ファイル: Messages.php プロジェクト: realfluid/umbaugh
 /** -----------------------------------------
 	/**  Spell Check for Textareas
 	/** -----------------------------------------*/
 function spellcheck()
 {
     if (!class_exists('EE_Spellcheck')) {
         require APPPATH . 'libraries/Spellcheck.php';
     }
     return EE_Spellcheck::check();
 }