UNPKG

1.22 kBTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6 * @module image/imageinsert
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9import ImageUpload from './imageupload.js';
10import ImageInsertViaUrl from './imageinsertviaurl.js';
11import ImageInsertUI from './imageinsert/imageinsertui.js';
12/**
13 * The image insert plugin.
14 *
15 * For a detailed overview, check the {@glink features/images/image-upload/image-upload Image upload feature}
16 * and {@glink features/images/images-inserting Insert images via source URL} documentation.
17 *
18 * This plugin does not do anything directly, but it loads a set of specific plugins
19 * to enable image uploading or inserting via implemented integrations:
20 *
21 * * {@link module:image/imageupload~ImageUpload}
22 * * {@link module:image/imageinsert/imageinsertui~ImageInsertUI}
23 */
24export default class ImageInsert extends Plugin {
25 /**
26 * @inheritDoc
27 */
28 static get pluginName(): "ImageInsert";
29 /**
30 * @inheritDoc
31 */
32 static get requires(): readonly [typeof ImageUpload, typeof ImageInsertViaUrl, typeof ImageInsertUI];
33}