TinyMCE MultiCloud Plugin - v0.1.1
    Preparing search index...

    Function registerProvider

    • Registers a custom cloud provider with the MultiCloud Plugin.

      Must be called before tinymce.init(). The provider is merged with the built-in provider list and will appear in both the picker and upload dialogs (if it implements upload). Registering a provider with the same id as a built-in provider overrides the built-in one.

      Parameters

      Returns void

      registerProvider({
      id: 'myS3',
      label: 'Company S3',
      pick: async (ctx) => { ... },
      upload: async (ctx, file) => { ... },
      });
      tinymce.init({ plugins: 'multicloud', ... });

      Salvatore Callari Callari@WaXCode.net