`
ranfow
  • 浏览: 28613 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
社区版块
存档分类
最新评论

ZF+Smarty+FCKeditor

    博客分类:
  • PHP
阅读更多

一、在index.php中加载fckeditor.php:

 require_once "fckeditor/FCKeditor.php";  // 我把fckeditor文件夹放include下面,且将include设为include_path

二、在xxxController类中添加editorAction:

 public function editorAction()
    {
        $editor = new FCKeditor('content');
        $editor->BasePath = $this->_view->baseUrl . './include/fckeditor/';  // 指定fckeditor路径
        $editor->Width = '600';
        $editor->Height = '400';
        $editor->Value = '请在此处输入内容';
        $this->_view->editor = $editor->CreateHtml();    // 生成fckeditor后赋给editor或在模板中生成
        $this->_view->display('editor.tpl');
    }    // 注:$this->_view为Smarty对象

三、在页面中生成fckeditor
只需在模板文件中添加以下语句即可:

 <{$editor}>

四、在fckeditor目录下创建.htaccess,其内容为:RewriteEngine off

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics