Module

adapter-ckfinder/utils

@ckeditor/ckeditor5-adapter-ckfinder/src/utils

module

Filtering

Functions

  • getCookie( name ) → string | null

    Returns the value of the cookie with a given name or null if the cookie is not found.

    Parameters

    name : string

    Returns

    string | null
  • getCsrfToken() → string

    Returns the CSRF token value. The value is a hash stored in document.cookie under the ckCsrfToken key. The CSRF token can be used to secure the communication between the web browser and the CKFinder server.

    Returns

    string
  • setCookie( name, value ) → void

    Sets the value of the cookie with a given name.

    Parameters

    name : string
    value : string

    Returns

    void