2

Yii フレームワークは初めてです。CMS 管理ページ用に FCK エディターが必要です。FCKeditor をダウンロードしてルート フォルダーに展開し、その拡張子を yii 拡張フォルダーに展開しました。そして、私は私のビューに次のコードを追加しました

<?php $this->widget('application.extensions.fckeditor.FCKEditorWidget',array(
    "model"=>$model,                # Data-Model
    "attribute"=>'content',         # Attribute in the Data-Model
    "height"=>'400px',
    "width"=>'100%',
    "toolbarSet"=>'Basic',          # EXISTING(!) Toolbar (see: fckeditor.js)
    "fckeditor"=>Yii::app()->basePath."/../fckeditor/fckeditor.php",
                                    # Path to fckeditor.php
    "fckBasePath"=>Yii::app()->baseUrl."/fckeditor/",
                                    # Realtive Path to the Editor (from Web-Root)
    "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)
    ) ); ?>

これらはすべて正常に機能しています。ただし、エディターは個別に表示されます。コンテンツ テキストエリアの代わりにエディターが必要です。ここに画像の説明を入力

4

1 に答える 1

1
<?php echo CHtml::activeTextArea($model,'content',array('rows'=>6, 'cols'=>50)); ?>

上記のテキストエリアの代わりに FCKEditor を使用するには、上記のコードを次のように置き換えて統合ウィジェットを呼び出します。

<?php $this->widget('application.extensions.fckeditor.FCKEditorWidget',array(
 'model'     =>  $model,
 'attribute' => 'content',
 'height'    =>  '600px',
 'width'     =>  '100%',
 'fckeditor' =>  dirname(Yii::app()->basePath).'/htdocs/fckeditor/fckeditor.php',
 'fckBasePath' => Yii::app()->baseUrl.'/fckeditor/')
 ); ?>

このようなことをしましたか、このようにした場合、テキストエリアはエディターに置き換えられます。それが役立つことを願っています

于 2012-05-08T06:09:51.633 に答える