funayaki/ckeditor

There is no license information available for the latest version (dev-master) of this package.

AkkaCKEditor plugin for CakePHP

Installs: 3 264

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 9

Language:HTML

Type:cakephp-plugin

dev-master 2018-10-05 10:33 UTC

This package is not auto-updated.

Last update: 2024-04-05 20:31:05 UTC


README

A CakePHP 3.x Plugin to allow the integration of CKEditor into an application.

Total Downloads License

Requirements

Included

  • CKEditor Helper

Installation

Composer (Best Choice)
  • Add the following to your composer.json located in the root of your application, in the require section . ie. /var/www/domain.com/composer.json
"require": {
	"funayaki/ckeditor": "dev-master"
}
  • Run the following at the root of your application
sudo php composer.phar update

Note: if composer.phar is not found, you need to install it. Follow CakePHP's documentation here -> http://book.cakephp.org/3.0/en/installation.html. Refer to Installing Cakephp section

Git Clone

git clone git@github.com:akkaweb/AKKA-CakePHP-CKEditor-Plugin.git

Download

https://github.com/akkaweb/AKKA-CakePHP-CKEditor-Plugin/archive/master.zip

Note: When installing with either manual download or Git Clone and CakePHP complains it cannot find the plugin, you need to add the plugin to vendor/cakephp-plugins.php in the plugins array [] --> 'AkkaCKEditor' => $baseDir . '/plugins/AkkaCKEditor/'. If you are using composer, running php composer.phar dumpautoload could be sufficient. If it does not work add the following to the "autoload" section in the root application's composer.json file in the "psr-4": section: "AkkaCKEditor\\": "./plugins/AkkaCKEditor/src"

Configuration

  • Load the plugin in your application's bootstrap.php file:
Plugin::load('AkkaCKEditor', ['bootstrap' => false, 'routes' => true]);
  • Load the plugin's Helper in AppController.php
class AppController extends Controller{
    public $helpers = ['AkkaCKEditor.CKEditor'];

}
  • Optionally you are able to choose the Version and Distribution of the CKEditor to be loaded. See more details at http://cdn.ckeditor.com/
class AppController extends Controller {
	public $helpers = ['AkkaCKEditor.CKEditor' => [
		'distribution' => 'full', // Default Option / Other options => 'basic', 'standard'
		'editor_config' => [] // Default Option / Other options https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html
	]];
}

Usage

Helper Template File Setup
  • Add <?php echo $this->CKEditor->loadJs(); ?> inside the application default.ctp file right before </head> tag. This will allow CKEditor to be available througout the application. It can also be loaded inside the template file as the first line or before the textarea where you want to apply the CKEditor.
CKEditor.replace

Insert the following code immediately after the textarea you want CKEditor applied

// replace(field-name)  -> replace takes field_name and can be used multiple times throughout your application
	
<?php echo $this->Form->input('body'); ?> // Example
<?php echo $this->CKEditor->replace('body'); ?>

Disclaimer

Although we have done many tests to ensure this plugin works as intended, we advise you to use it at your own risk. As with anything else, you should first test any addition to your application in a test environment. Please provide any fixes or enhancements via issue or pull request.