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

    Interface CloudProviderContext

    Execution context passed to a provider's pick and upload methods. Contains everything a provider needs to operate: the editor instance, resolved plugin URL, full plugin options, and the provider's own runtime configuration.

    Salvatore Callari Callari@WaXCode.net

    interface CloudProviderContext {
        editor: any;
        options: MultiCloudPluginOptions;
        pluginUrl: string;
        providerConfig: ProviderRuntimeConfig;
    }
    Index

    Properties

    editor: any

    The TinyMCE editor instance. Typed as any because TinyMCE's typings are not bundled.

    Resolved and validated plugin options.

    pluginUrl: string

    Absolute URL of the plugin bundle directory, used to resolve default picker page paths.

    providerConfig: ProviderRuntimeConfig

    The specific runtime configuration for this provider.