class BUEditor in BUEditor 8
Same name and namespace in other branches
- 8.2 src/Plugin/Editor/BUEditor.php \Drupal\bueditor\Plugin\Editor\BUEditor
Defines BUEditor as an Editor plugin.
Plugin annotation
@Editor(
id = "bueditor",
label = "BUEditor",
supports_content_filtering = FALSE,
supports_inline_editing = FALSE,
is_xss_safe = TRUE,
supported_element_types = {
"textarea"
}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\editor\Plugin\EditorBase implements EditorPluginInterface
- class \Drupal\bueditor\Plugin\Editor\BUEditor
- class \Drupal\editor\Plugin\EditorBase implements EditorPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of BUEditor
3 string references to 'BUEditor'
File
- src/
Plugin/ Editor/ BUEditor.php, line 25
Namespace
Drupal\bueditor\Plugin\EditorView source
class BUEditor extends EditorBase {
/**
* {@inheritdoc}
*/
public function getDefaultSettings() {
$settings['default_editor'] = '';
return $settings;
}
/**
* {@inheritdoc}
*/
public function settingsForm(array $form, FormStateInterface $form_state, Editor $editor) {
$settings = $editor
->getSettings();
$bueditor_editors = [];
foreach (\Drupal::entityTypeManager()
->getStorage('bueditor_editor')
->loadMultiple() as $bueditor_editor) {
$bueditor_editors[$bueditor_editor
->id()] = $bueditor_editor
->label();
}
// Default editor
$form['default_editor'] = [
'#type' => 'select',
'#title' => $this
->t('BUEditor Editor'),
'#options' => $bueditor_editors,
'#default_value' => $settings['default_editor'],
'#description' => $this
->t('Select the default editor for the authorized roles. Editors can be configured at <a href=":url">BUEditor admin page</a>.', [
':url' => Url::fromRoute('bueditor.admin')
->toString(),
]),
'#empty_option' => '- ' . $this
->t('Select an editor') . ' -',
];
// Roles editors
$role_ids = [];
if ($format_form = $form_state
->getCompleteForm()) {
if (isset($format_form['roles']['#value'])) {
$role_ids = $format_form['roles']['#value'];
}
elseif (isset($format_form['roles']['#default_value'])) {
$role_ids = $format_form['roles']['#default_value'];
}
}
elseif ($format = $editor
->getFilterFormat()) {
$role_ids = array_keys(filter_get_roles_by_format($format));
}
if (count($role_ids) > 1) {
$form['roles_editors'] = [
'#type' => 'details',
'#title' => $this
->t('Role specific editors'),
];
$roles = user_roles();
foreach ($role_ids as $role_id) {
$form['roles_editors'][$role_id] = [
'#type' => 'select',
'#title' => $this
->t('Editor for %role', [
'%role' => $roles[$role_id]
->label(),
]),
'#options' => $bueditor_editors,
'#default_value' => isset($settings['roles_editors'][$role_id]) ? $settings['roles_editors'][$role_id] : '',
'#empty_option' => '- ' . $this
->t('Use the default') . ' -',
];
}
}
return $form;
}
/**
* {@inheritdoc}
*/
public function settingsFormValidate(array $form, FormStateInterface $form_state) {
$settings =& $form_state
->getValue([
'editor',
'settings',
]);
// Remove empty role editor pairs.
if (isset($settings['roles_editors'])) {
$settings['roles_editors'] = array_filter($settings['roles_editors']);
}
}
/**
* {@inheritdoc}
*/
public function getLibraries(Editor $editor) {
$bueditor_editor = $this
->getBUEditorEditor($editor);
return $bueditor_editor ? $bueditor_editor
->getLibraries($editor) : [];
}
/**
* {@inheritdoc}
*/
public function getJSSettings(Editor $editor) {
$bueditor_editor = $this
->getBUEditorEditor($editor);
return $bueditor_editor ? $bueditor_editor
->getJSSettings($editor) : [];
}
/**
* Returns the selected BUEditor Editor entity for an account from editor settings.
*/
public static function getBUEditorEditor(Editor $editor, AccountInterface $account = NULL) {
if (!isset($account)) {
$account = \Drupal::currentUser();
}
$id = static::getBUEditorEditorId($editor, $account);
return $id ? \Drupal::entityTypeManager()
->getStorage('bueditor_editor')
->load($id) : FALSE;
}
/**
* Returns the selected BUEditor Editor id for an account from editor settings.
*/
public static function getBUEditorEditorId(Editor $editor, AccountInterface $account) {
$settings = $editor
->getSettings();
if (!empty($settings['roles_editors'])) {
// Filter roles in two steps. May avoid a db hit by filter_get_roles_by_format().
if ($roles_editors = array_intersect_key($settings['roles_editors'], array_flip($account
->getRoles()))) {
if ($roles_editors = array_intersect_key($roles_editors, filter_get_roles_by_format($editor
->getFilterFormat()))) {
return reset($roles_editors);
}
}
}
return $settings['default_editor'];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BUEditor:: |
public static | function | Returns the selected BUEditor Editor entity for an account from editor settings. | |
BUEditor:: |
public static | function | Returns the selected BUEditor Editor id for an account from editor settings. | |
BUEditor:: |
public | function |
Returns the default settings for this configurable text editor. Overrides EditorBase:: |
|
BUEditor:: |
public | function |
Returns JavaScript settings to be attached. Overrides EditorPluginInterface:: |
|
BUEditor:: |
public | function |
Returns libraries to be attached. Overrides EditorPluginInterface:: |
|
BUEditor:: |
public | function | ||
BUEditor:: |
public | function | ||
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
EditorBase:: |
public | function |
Form constructor. Overrides PluginFormInterface:: |
3 |
EditorBase:: |
public | function |
Form submission handler. Overrides PluginFormInterface:: |
1 |
EditorBase:: |
public | function |
Form validation handler. Overrides PluginFormInterface:: |
1 |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |