View source
<?php
namespace Drupal\colorbutton\Plugin\CKEditorPlugin;
use Drupal\ckeditor\CKEditorPluginBase;
use Drupal\ckeditor\CKEditorPluginConfigurableInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\editor\Entity\Editor;
class ColorButton extends CKEditorPluginBase implements CKEditorPluginConfigurableInterface {
public function getLibraryPath() {
if (\Drupal::hasService('library.libraries_directory_file_finder')) {
$path = \Drupal::service('library.libraries_directory_file_finder')
->find('colorbutton');
}
elseif (\Drupal::moduleHandler()
->moduleExists('libraries')) {
$path = libraries_get_path('colorbutton');
}
else {
$path = 'libraries/colorbutton';
}
return $path;
}
public function getDependencies(Editor $editor) {
return [
'panelbutton',
];
}
public function getFile() {
return $this
->getLibraryPath() . '/plugin.js';
}
public function getConfig(Editor $editor) {
$settings = $editor
->getSettings();
$config = [
'colorButton_enableMore' => FALSE,
'colorButton_enableAutomatic' => TRUE,
];
if (!empty($settings['plugins']['colorbutton']['colors'])) {
$config['colorButton_colors'] = $settings['plugins']['colorbutton']['colors'];
}
return $config;
}
public function getButtons() {
$path = $this
->getLibraryPath();
return [
'TextColor' => [
'label' => $this
->t('Text Color'),
'image' => $path . '/icons/textcolor.png',
],
'BGColor' => [
'label' => $this
->t('Background Color'),
'image' => $path . '/icons/bgcolor.png',
],
];
}
public function settingsForm(array $form, FormStateInterface $form_state, Editor $editor) {
$settings = $editor
->getSettings();
$form['colors'] = [
'#type' => 'textarea',
'#title' => $this
->t('Text Colors'),
'#description' => $this
->t('Enter the hex values of all colors you would like to support (without the # symbol) separated by a comma. Leave blank to use the default colors for Color Button.'),
'#default_value' => !empty($settings['plugins']['colorbutton']['colors']) ? $settings['plugins']['colorbutton']['colors'] : '',
];
$form['colors']['#element_validate'][] = [
$this,
'validateInput',
];
return $form;
}
public function validateInput(array $element, FormStateInterface $form_state) {
$input = $form_state
->getValue([
'editor',
'settings',
'plugins',
'colorbutton',
'colors',
]);
if (preg_match('/([^A-F0-9,])/i', $input)) {
$form_state
->setError($element, 'Only valid hex values are allowed (A-F, 0-9). No other symbols or letters are allowed. Please check your settings and try again.');
}
}
}