goto ./inc/inc_ext/FCKeditior/
look at fckconfig.js there is code like this
Code: Select all
FCKConfig.ToolbarSets["phpwcms"] = [
['Source','-','Save','NewPage','Preview'],
['Cut','Copy','Paste','PasteText','PasteWord'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['About'],
['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Link','Unlink'],
['TextColor','BGColor'],
['Image','Table','Rule','SpecialChar','Smiley'],['CssEditor'],
['FontFormat','FontName','FontSize']
] ;
and in fckeditor.php you will see this Code
Code: Select all
function FCKeditor( $instanceName )
{
$this->InstanceName = $instanceName ;
$this->BasePath = '/FCKeditor2/' ;
$this->Width = '100%' ;
$this->Height = '200' ;
$this->ToolbarSet = 'phpwcms' ;
$this->Value = '' ;
$this->Config = array() ;
}
this is for FCKEditor2 in phpwcms Version 1.2.1 if you use 1.1RC4 there are some differences
