label = $label; $this->name = $name; } /** * 设置上传路径 * @param string $url */ public function setUploadUrl(string $url) { $url and $this->upImgUrl = $url; } /** * 获取html * @return mixed|string */ public function getHtml() { return <<{$this->getLabel()}
{$this->getForm()}
HTML; } /** * 获取label * @return string */ private function getLabel() { return Basics::indentAndLineFeed(4, Basics::BEFORE) . ""; } /** * 获取表单html文本 * @return string */ private function getForm() { JsFacade::normalJS($this->editor()); JsFacade::resetCode($this->resetCode()); JsFacade::loadJs('admin_static/editor/ueditor.config.js'); JsFacade::loadJs('admin_static/editor/ueditor.all.js'); return Basics::indentAndLineFeed(5, Basics::BEFORE) . "" . Basics::indentAndLineFeed(4, Basics::BEFORE); } /** * 富文本的js * @return string */ private function editor() { return <<name} = custom.editorRender(UE, "{$this->name}-ue"); EDITOR; } private function resetCode() { return <<name}.ready(()=>{ ue_{$this->name}.setContent('{:html_entity_decode(\$data.{$this->name})}'); }); JST; } /** * 设置默认值 * @param $value * @return $this|mixed */ public function setDefault($value) { $value and $this->default = html_entity_decode($value); return $this; } }