Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我们的 CMS Made Simple 安装中,我尽可能使用 ACE 编辑器(样式表、模板等)。现在我也想在管理界面的其他文本框中使用它(例如页面内容)。
有什么方法可以“强制”使用 ACE 编辑器,或者在这里可以帮助我的模块?
以肮脏的方式,您可以在 lib/classes/contenttypes/Content.inc.php:552 中添加第 11 个参数“true”,最后这一行应如下所示:
$ret = create_textarea($block_wysiwyg, $value, $blockInfo['id'], '', $blockInfo['id'], '', $this->stylesheet, null, null, null, true);
(基于 CMSMS 1.11.12)