Contains \Drupal\editor\Plugin\EditorBase.
<?php
/**
* @file
* Contains \Drupal\editor\Plugin\EditorBase.
*/
namespace Drupal\editor\Plugin;
use Drupal\Component\Plugin\PluginBase;
use Drupal\editor\Plugin\Core\Entity\Editor;
use Drupal\editor\Plugin\EditorPluginInterface;
/**
* Defines a base class from which other modules providing editors may extend.
*
* This class provides default implementations of the EditPluginInterface so that
* classes extending this one do not need to implement every method.
*
* Plugins extending this class need to define a plugin definition array through
* annotation. These definition arrays may be altered through
* hook_editor_info_alter(). The definition includes the following keys:
*
* - id: The unique, system-wide identifier of the text editor. Typically named
* the same as the editor library.
* - label: The human-readable name of the text editor, translated.
* - module: The name of the module providing the plugin.
*
* A complete sample plugin definition should be defined as in this example:
*
* @code
* @Editor(
* id = "myeditor",
* label = @Translation("My Editor")
* )
* @endcode
*/
abstract class EditorBase extends PluginBase implements EditorPluginInterface {
/**
* Implements \Drupal\editor\Plugin\EditPluginInterface::getDefaultSettings().
*/
public function getDefaultSettings() {
return array();
}
/**
* Implements \Drupal\editor\Plugin\EditPluginInterface::settingsForm().
*/
public function settingsForm(array $form, array &$form_state, Editor $editor) {
return $form;
}
/**
* Implements \Drupal\editor\Plugin\EditPluginInterface::settingsFormValidate().
*/
public function settingsFormValidate(array $form, array &$form_state) {
}
/**
* Implements \Drupal\editor\Plugin\EditPluginInterface::settingsFormSubmit().
*/
public function settingsFormSubmit(array $form, array &$form_state) {
}
}
Name | Description |
---|---|
EditorBase | Defines a base class from which other modules providing editors may extend. |