UnicornEditor.php in Zircon Profile 8
File
core/modules/editor/tests/modules/src/Plugin/Editor/UnicornEditor.php
View source
<?php
namespace Drupal\editor_test\Plugin\Editor;
use Drupal\Core\Form\FormStateInterface;
use Drupal\editor\Plugin\EditorBase;
use Drupal\editor\Entity\Editor as EditorEntity;
class UnicornEditor extends EditorBase {
function getDefaultSettings() {
return array(
'ponies_too' => TRUE,
);
}
function settingsForm(array $form, FormStateInterface $form_state, EditorEntity $editor) {
$form['ponies_too'] = array(
'#title' => t('Pony mode'),
'#type' => 'checkbox',
'#default_value' => TRUE,
);
return $form;
}
function getJSSettings(EditorEntity $editor) {
$js_settings = array();
$settings = $editor
->getSettings();
if ($settings['ponies_too']) {
$js_settings['ponyModeEnabled'] = TRUE;
}
return $js_settings;
}
public function getLibraries(EditorEntity $editor) {
return array(
'editor_test/unicorn',
);
}
}
Classes
Name |
Description |
UnicornEditor |
Defines a Unicorn-powered text editor for Drupal (for testing purposes). |