TRexEditor.php in Zircon Profile 8.0
File
core/modules/editor/tests/modules/src/Plugin/Editor/TRexEditor.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 TRexEditor extends EditorBase {
public function getDefaultSettings() {
return array(
'stumpy_arms' => TRUE,
);
}
public function settingsForm(array $form, FormStateInterface $form_state, EditorEntity $editor) {
$form['stumpy_arms'] = array(
'#title' => t('Stumpy arms'),
'#type' => 'checkbox',
'#default_value' => TRUE,
);
return $form;
}
public function getJSSettings(EditorEntity $editor) {
$js_settings = array();
$settings = $editor
->getSettings();
if ($settings['stumpy_arms']) {
$js_settings['doMyArmsLookStumpy'] = TRUE;
}
return $js_settings;
}
public function getLibraries(EditorEntity $editor) {
return array(
'editor_test/trex',
);
}
}
Classes
Name |
Description |
TRexEditor |
Defines a Tyrannosaurus-Rex powered text editor for testing purposes. |