CKBoxConfig (ckbox)
@ckeditor/ckeditor5-ckbox/src/ckbox
The configuration of the CKBox feature.
The minimal configuration for the CKBox feature requires providing the
config.ckbox.tokenUrl:
ClassicEditor
.create( editorElement, {
ckbox: {
tokenUrl: 'https://example.com/cs-token-endpoint'
}
} )
.then( ... )
.catch( ... );
Hovewer, you can also adjust the feature to fit your needs:
ClassicEditor
.create( editorElement, {
ckbox: {
defaultUploadCategories: {
Bitmaps: [ 'bmp' ],
Pictures: [ 'jpg', 'jpeg' ],
Scans: [ 'png', 'tiff' ]
},
ignoreDataId: true,
serviceOrigin: 'https://example.com/',
assetsOrigin: 'https://example.cloud/',
tokenUrl: 'https://example.com/cs-token-endpoint'
}
} )
.then( ... )
.catch( ... );
See all editor options.
Filtering
Properties
-
assetsOrigin : String | undefinedmodule:ckbox/ckbox~CKBoxConfig#assetsOriginConfigures the base URL for assets inserted into the editor. Required only in on-premises installations.
Defaults to
'https://ckbox.cloud' -
defaultUploadCategories : Object | undefinedmodule:ckbox/ckbox~CKBoxConfig#defaultUploadCategoriesDefines the categories to which the uploaded images will be assigned. If configured, it overrides the category mappings defined on the cloud service. The value of this option should be an object, where the keys define categories and their values are the types of images that will be uploaded to these categories. The categories might be referenced by their name or ID.
Example:
const ckboxConfig = { defaultUploadCategories: { Bitmaps: [ 'bmp' ], Pictures: [ 'jpg', 'jpeg' ], Scans: [ 'png', 'tiff' ], // The category below is referenced by its ID. 'fdf2a647-b67f-4a6c-b692-5ba1dc1ed87b': [ 'gif' ] } };Defaults to
null -
ignoreDataId : Boolean | undefinedmodule:ckbox/ckbox~CKBoxConfig#ignoreDataIdInserts the unique asset ID as the
data-ckbox-resource-idattribute. To disable this behavior, set it totrue.Defaults to
false -
language : String | undefinedmodule:ckbox/ckbox~CKBoxConfig#language -
serviceOrigin : String | undefinedmodule:ckbox/ckbox~CKBoxConfig#serviceOriginConfigures the base URL of the API service. Required only in on-premises installations.
Defaults to
'https://api.ckbox.io' -
tokenUrl : Stringmodule:ckbox/ckbox~CKBoxConfig#tokenUrl
Every day, we work hard to keep our documentation complete. Have you spotted outdated information? Is something missing? Please report it via our issue tracker.