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