_getInfo($name, $value, $attribs); extract($info); // name, value, attribs, options, listsep, disable $fck = new FCKEditor($this->view->escape($name)); $fck->BasePath = $this->view->base . '/fckeditor/'; $fck->Value = $value; if (isset($attribs['width'])) { $fck->Width = $attribs['width']; } else { $fck->Width = '890'; } $fck->Height = '600'; $fck->Config['CustomConfigurationsPath'] = '../../javascript/fck_custom_config.js'; $fck->ToolbarSet = 'MonkeysToolbar'; return $fck->CreateHtml(); } }