xaraya/ckeditor

A WYSIWYG editor module

Installs: 22

Dependents: 1

Suggesters: 1

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

Type:xaraya-module

2.2.0 2022-04-15 15:02 UTC

This package is auto-updated.

Last update: 2024-05-08 11:15:32 UTC


README

The CKEditor module supplies the "editor" property type for use in your objects. To use CKEditor with a Dynamic Data object, simply add one or more "editor" properties to your object.

Configuration settings for CKEditor are found in ckeditor/xartemplates/includes/ckeditor/config.js

There, you can control the style of the editor, which buttons to include in the toolbars, language, size, which plugins to load, etc. The official CKEditor documentation includes a reference for config settings leave this website.

PGRFileManager

The CKEditor module comes with the PGRFileManager leave this website plugin, which is disabled by default. To enable the file manager, uncomment this line in CKEditor's config.js:

//CKEDITOR.plugins.load('pgrfilemanager');

Once you've enabled pgrfilemanager, you can access it in the editor by clicking on the link button or image button and then clicking on Browse Server.

Options for creating and deleting directories are available in the file manager by right-clicking on directories in the directory tree. You can also drag directories around, and can drag directories into other directories and drag files into directories.

The modify config page has a number of settings for PGRFileManager:

  • rootPath -- Root location for your directories and files. Set this
  • to a directory that exists on your server.
  • urlPath -- Base URL used by the editor to link to your files.
  • (Must be the URL equivalent of rootPath.)
  • allowedExtensions -- Comma-separated list of file extensions that
  • are permissible to upload.
  • fileMaxSize -- Maximum file size (bytes) of an upload.
  • imageMaxHeight -- Maximum height for image uploads.
  • imageMaxWidth -- Maximum width for image uploads.
  • allowEdit -- This setting controls whether the file manager will
  • allow new uploads and copying/moving/renaming/deleting of previously
  • uploaded files and directories. If set to false, you will only be able
  • to select from previously uploaded files.

Note: Display of file thumbnails can be buggy with Windows hosting. You may find that files will upload but their thumbs will not always display in the pane where you expect them.