...
Code Block | ||
---|---|---|
| ||
"ContentPlatform": { "BaseTenantUrlBaseCdnUrl": "https://yourdomain.preview-picturepark.com", "RootFolderId": 102, "EnableOnAllMedia": true, "DisableDefaultMediaSelector": false, "DefaultTinyMceImageWidth": 600, "UseImageCdnUrlInTinyMce": false, "MediaTypes": [ { "Name": "Image", "FileExtensions": ".jpg,.jpeg,.jpe,.gif,.bmp,.png,.gif", "DownloadContentSelectionName": "Original", "PreviewContentSelectionName": "Preview", "PreferredDownloadWidth": 1200 }, { "Name": "Video", "FileExtensions": ".mov,.mp4", "DownloadContentSelectionName": "VideoSmall", "PreviewContentSelectionName": "Preview" }, { "Name": "Pdf", "FileExtensions": ".pdf", "DownloadContentSelectionName": "Original", "PreviewContentSelectionName": "Preview" } ] } |
Value | Description |
---|---|
BaseTenantUrlBaseCdnUrl | The base URL of the picker. |
RootFolderId | The Optimizely media folder ID where the media is downloaded and stored. |
EnableOnAllMedia | When set to true, all media properties will have the DAM picker capability. |
DisableDefaultMediaSelector | When set to true, the default Optimizely media selector behavior will be disabled. |
DefaultTinyMceImageWidth | The default width for displaying images selected from the DAM in TinyMCE. |
UseImageCdnUrlInTinyMce | When enabled, the image URL in TinyMCE will use the CDN URL instead of the Optimizely image URL. |
MediaTypes | Configuration for the supported media types in the plugin. |
MediaTypes.Name | The name of the media type. The supported media types are Image, Video, and PDF. |
MediaTypes.FileExtensions | The file extensions of the media type, separated by a comma. |
MediaTypes.DownloadContentSelectionName | Refers to the content variant name used for downloading and importing into Optimizely media. |
MediaTypes.PreviewContentSelectionName | Refers to the content variant name used for previewing purposes. |
PreferredDownloadWidth | Specifies the preferred image width for downloading. This option is supported only for the Image media type. |
...