_persistantFreeze = true; $this->_type = 'html_editor'; $this->fullPage = false; $name = $this->getAttribute('name'); $this->fck_editor = new FCKeditor($name); $this->fck_editor->ToolbarSet = $fck_attribute['ToolbarSet']; $this->fck_editor->Width = !empty($fck_attribute['Width']) ? $fck_attribute['Width'] : '990'; $this->fck_editor->Height = !empty($fck_attribute['Height']) ? $fck_attribute['Height'] : '400'; //We get the optionnals config parameters in $fck_attribute array $this->fck_editor->Config = !empty($fck_attribute['Config']) ? $fck_attribute['Config'] : array(); // This is an alternative (a better) way to pass configuration data to the editor. if (is_array($config)) { foreach ($config as $key => $value) { $this->fck_editor->Config[$key] = $config[$key]; } if (isset($config['ToolbarSet'])) { $this->fck_editor->ToolbarSet = $config['ToolbarSet']; } if (isset($config['Width'])) { $this->fck_editor->Width = $config['Width']; } if (isset($config['Height'])) { $this->fck_editor->Height = $config['Height']; } if (isset($config['FullPage'])) { $this->fullPage = is_bool($config['FullPage']) ? $config['FullPage'] : ($config['FullPage'] === 'true'); } } } /** * Check if the browser supports FCKeditor * * @access public * @return boolean */ function browserSupported() { return FCKeditor :: IsCompatible(); } /** * Return the HTML editor in HTML * @return string */ function toHtml() { $value = $this->getValue(); if ($this->fullPage) { if (strlen(trim($value)) == 0) { // TODO: To be considered whether here to be added DOCTYPE, language and character set declarations. $value = '