How to setup FCKeditor

Comparing #2 with #3

Revision #3 was created by Ascomae Ascomae on May 21, 2009, 2:10:36 PM.

new configuration-features from 0.0.4

Content

[...]
In the view where you want to use the FCKeditorWidget:


```php
<?php $this->widget('application.extensions.fckeditor.FCKEditorWidget',array(
        'model'     =>  $m"model"=>$pages,                # Data-Model,         'attribute' => 'Tex"attribute"=>'content',
 
   'height'    =>  '400px',
 
            'width'     =>  '100%',
 
            'fckeditor' =>  dirname(
# Attribute in the Data-Model
 
    "height"=>'400px',
 
    "width"=>'100%',
 
    "toolbarSet"=>'Basic',          # EXISTING(!) Toolbar (see: fckeditor.js)
 
    "fckeditor"=>
Yii::app()->basePath).'."/../fckeditor/fckeditor.php'", 'fckBasePath' => Yii::app()->baseUrl.'/fckeditor/')
 
                        # Path to fckeditor.php
 
    "fckBasePath"=>Yii::app()->baseUrl."/fckeditor/",
 
                                    # Realtive Path to the Editor (from Web-Root)
 
    "toolbarSet"=>"Basic",          #EXISTING(!) Toolbar (see: fckeditor.js)
 
    "config" => array(
 
        "EditorAreaCSS"=>Yii::app()->baseUrl.'/css/index.css',),
 
                                    # http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
 
                                    # Additional Parameter (Can't configure a Toolbar dynamicly)
 
    ) 
); ?>
```
[...]
+ <b>fckeditor</b>, the path to the fckeditor php file.
+ <b>fckBasePath</b>, the url to the editor frontend to be loaded inside the iframe.
+ <b>config</b> Most parameter in the fckconfig.js can be changed within this config. http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options
 
 
If those instructions have been followed exactly the FCKeditor should work correctly.