ecmall所见即所得编辑器

1.在app文件中添加

/* 所见即所得编辑器 */
extract($this->_get_theme());
$this->assign(‘build_editor’, $this->_build_editor(array(
‘name’ => ‘description’,
‘content_css’ => SITE_URL . “/themes/store/{$template_name}/styles/{$style_name}” . ‘/shop.css’, // for preview
)));

2.在模板中引用

在模板页的{include file=member.header.html}下添加{$build_editor}

然后在要显示编辑器的位置添加如下代码:

<textarea name=”description” id=”description” style=”width:100%; height:350px;”>{$store.description|escape}</textarea>

注意:textarea中的name要和app中build_editor的name一样

你可能感兴趣的:(ecmall所见即所得编辑器)