0

如何在 ckeditor 中启用通用图像选择对话框?扩展 rte_ckeditor_image 不适用于 TYPO3 10。

我什么也没找到。没有人需要这个吗?

4

2 回答 2

3

普通图像在 CKEditor 中没有位置,因为它们不能再由 TYPO3 系统处理并针对响应式设计进行优化。小图像通常只是象形图,可以使用 CSS 类集成为图标字体。因此需求很小。

于 2020-08-04T00:04:26.233 回答
1

But there is a branch on GitHub supporting TYPO3 v10. You can download the dev-TYPO3_10.x branch as a zip file and place it in your typo3conf/ext in a folder named rte_ckeditor_image.

If you are using composer, you can try to use composer req netresearch/rte-ckeditor-image:dev-TYPO3_10.x.

If you have a composer installation and composer req fails (as it did in my case) you can try the following.

  1. Download extension as mentioned above.
  2. Add the autoload line(s) to your

composer.json

{
    "autoload": {
        "psr-4": {
            "Netresearch\\RteCKEditorImage\\": "public/typo3conf/ext/rte_ckeditor_image/Classes/"
        }
    }
}
  1. Run composer install
  2. Activate the extension in Extension Manager
  3. Follow the installation instruction of rte_ckedit_image
  4. Clear TYPO3 Cache in Maintenance

There are currently waiting 2 pull requests that might have some updates.

于 2020-11-19T15:53:40.263 回答