加载中...

Yii-kindediter-模板编辑,插入预定义变量


1.修改YIi扩展目录下的Kdeditor.php 文件,把中的js对象声明放到方法外面

  1. $js=<<<EOF
  2. var editor_$this->id;
  3. KindEditor.ready(function(K) {
  4. editor_$this->id = K.create('#$this->id',
  5. $properties_string
  6. );
  7. });
  8. EOF;

2.视图文件代码

  1. <li class="c_f"><span class="tit">模板变量:</span>
  2. <div class="cont f_l">
  3. <?php foreach($templateVar as $key=>$val){?>
  4. <span class="template_var" val="<?php echo $val?>"> <?php echo $key?> </span>
  5. <?php }?>
  6. </div>
  7. </li>
  1. <script type="text/javascript">
  2. $('.template_var').bind('click',function(){
  3. var str = $(this).attr('val');
  4. editor_EmailTemplates_zee_content.insertHtml(str);//editor_EmailTemplates_zee_content js编辑器对象名称
  5. });
  6. </script>

3.模型文件,后期处理

  1. /**
  2. * 获取模板变量
  3. */
  4. public function getVarUbb($type=null){
  5. if($type==null){
  6. return array(
  7. '{username}'=>'{username}',
  8. '{url}'=>'{url}',
  9. '{sitename}'=>'{sitename}',
  10. );
  11. }
  12. }
  13.  
  14. /**
  15. * 模板变量替换
  16. */
  17. public function replaceVarUbb($str){
  18. $str = str_replace('{username}','<?php echo $params["username"]; ?>',$str);
  19. $str = str_replace('{url}','<?php echo $params["url"]; ?>',$str);
  20. $str = str_replace('{sitename}','<?php echo Yii::app()->name; ?>',$str);
  21. return $str;
  22. }
  23.  
  24. /**
  25. * 模板保存后的操作
  26. * 写入模板文件
  27. */
  28. protected function afterSave(){
  29. $templatePath = Yii::app()->mailer->pathViews;
  30. $templatePath = str_replace('application','',$templatePath);
  31. $templatePath = str_replace('.','/',$templatePath);
  32. $templatePath = Yii::app()->basePath.$templatePath.'/';
  33. $templatePath = $templatePath.$this->zee_filename.'.php';
  34. $handle = fopen($templatePath, "wb");
  35. fwrite($handle, $this->replaceVarUbb($this->zee_content));
  36. fclose($handle);
  37. }


4.效果图



还没有评论.