PHP code example of ashanet / ckeditor
1. Go to this page and download the library: Download ashanet/ckeditor library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ashanet / ckeditor example snippets
$this->addPlugin('CkEditor');
$this->viewBuilder()->setHelpers(['CkEditor.Ck']);
echo $this->Ck->control('field_name');
echo $this->Form->control('field_name');
echo $this->Form->control($input, $options, $ckEditorOptions, $ckEditorUrl, $ckEditorPlugins);
@param string $input
@param array $options
@param array $ckEditorOptions
@param string $ckEditorUrl
@param array $ckEditorPlugins
echo $this->Ck->control('category.description');
echo $this->Ck->control('field_name', ['label' => 'A unique label']);
echo $this->Ck->control('field_name', [], ['fullPage' => true, 'allowedContent' => 'true']);
echo $this->Ck->control('field_name', [], [], '/js/ckeditor.js');
echo $this->Ck->control('field_name', [], [], null, [['myplugin', '/ckplugins/myplugin/', 'myplugin.js']]);
echo $this->Ck->control('field_name', ['label' => 'A unique label'], ['fullPage' => true, 'allowedContent' => 'true'], '/js/ckeditor.js', [['myplugin', '/ckplugins/myplugin/', 'myplugin.js']]);