InPlaceEditorBase.php in Zircon Profile 8
Same filename and directory in other branches
Namespace
Drupal\quickedit\PluginFile
core/modules/quickedit/src/Plugin/InPlaceEditorBase.phpView source
<?php
/**
* @file
* Contains \Drupal\quickedit\Plugin\InPlaceEditorBase.
*/
namespace Drupal\quickedit\Plugin;
use Drupal\Core\Plugin\PluginBase;
use Drupal\Core\Field\FieldItemListInterface;
/**
* Defines a base in-place editor implementation.
*
* @see \Drupal\quickedit\Annotation\InPlaceEditor
* @see \Drupal\quickedit\Plugin\InPlaceEditorInterface
* @see \Drupal\quickedit\Plugin\InPlaceEditorManager
* @see plugin_api
*/
abstract class InPlaceEditorBase extends PluginBase implements InPlaceEditorInterface {
/**
* {@inheritdoc}
*/
function getMetadata(FieldItemListInterface $items) {
return array();
}
}
Classes
Name | Description |
---|---|
InPlaceEditorBase | Defines a base in-place editor implementation. |