
| Current Path : /var/www/html/rocksensor/web/core/modules/ckeditor5/src/Plugin/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/core/modules/ckeditor5/src/Plugin/CKEditor5PluginConfigurableTrait.php |
<?php
namespace Drupal\ckeditor5\Plugin;
/**
* Provides a trait for configurable CKEditor 5 plugins.
*
* @see \Drupal\ckeditor5\Plugin\CKEditor5PluginConfigurableInterface
*/
trait CKEditor5PluginConfigurableTrait {
/**
* {@inheritdoc}
*/
public function getConfiguration() {
return $this->configuration;
}
/**
* {@inheritdoc}
*/
public function setConfiguration(array $configuration) {
$this->configuration = $configuration + $this->defaultConfiguration();
}
}