DrupalImage.php in Gutenberg 8.2
File
src/Plugin/GutenbergPlugin/DrupalImage.php
View source
<?php
namespace Drupal\gutenberg\Plugin\GutenbergPlugin;
use Drupal\gutenberg\GutenbergPluginBase;
use Drupal\gutenberg\GutenbergPluginConfigurableInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\editor\Entity\Editor;
class DrupalImage extends GutenbergPluginBase implements GutenbergPluginConfigurableInterface {
public function getFile() {
return '';
}
public function getLibraries(Editor $editor) {
return [
'core/drupal.ajax',
];
}
public function getConfig(Editor $editor) {
return [
'drupalImage_dialogTitleAdd' => $this
->t('Insert Image'),
'drupalImage_dialogTitleEdit' => $this
->t('Edit Image'),
];
}
public function settingsForm(array $form, FormStateInterface $form_state, Editor $editor) {
$form_state
->loadInclude('editor', 'admin.inc');
$form['image_upload'] = editor_image_upload_settings_form($editor);
$form['image_upload']['#element_validate'][] = [
$this,
'validateImageUploadSettings',
];
return $form;
}
public function validateImageUploadSettings(array $element, FormStateInterface $form_state) {
$settings =& $form_state
->getValue([
'editor',
'settings',
'plugins',
'drupalimage',
'image_upload',
]);
$form_state
->get('editor')
->setImageUploadSettings($settings);
$form_state
->unsetValue([
'editor',
'settings',
'plugins',
'drupalimage',
]);
}
}