예제 #1
0
파일: TinyMCE.php 프로젝트: noloh/TinyMCE
	/**
	* Sets the Text of the tinyMCE
	* 
	* @param string $text
	*/
	function SetText($text)	
	{
		parent::SetText($text);
		if($this->ShowStatus == Component::Shown)
			ClientScript::Queue($this, "tinymce.get('$this').setContent", array($text));
	}