abstract class FieldHandlerBase in CMS Content Sync 2.0.x
Same name and namespace in other branches
- 8 src/Plugin/FieldHandlerBase.php \Drupal\cms_content_sync\Plugin\FieldHandlerBase
- 2.1.x src/Plugin/FieldHandlerBase.php \Drupal\cms_content_sync\Plugin\FieldHandlerBase
Common base class for field handler plugins.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\cms_content_sync\Plugin\FieldHandlerBase implements FieldHandlerInterface, ContainerFactoryPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of FieldHandlerBase
See also
\Drupal\cms_content_sync\Annotation\EntityHandler
\Drupal\cms_content_sync\Plugin\FieldHandlerInterface
8 files declare their use of FieldHandlerBase
- DefaultFieldHandler.php in src/
Plugin/ cms_content_sync/ field_handler/ DefaultFieldHandler.php - DefaultFileHandler.php in src/
Plugin/ cms_content_sync/ field_handler/ DefaultFileHandler.php - DefaultFormattedTextHandler.php in src/
Plugin/ cms_content_sync/ field_handler/ DefaultFormattedTextHandler.php - DefaultLayoutBuilderHandler.php in src/
Plugin/ cms_content_sync/ field_handler/ DefaultLayoutBuilderHandler.php - DefaultLinkHandler.php in src/
Plugin/ cms_content_sync/ field_handler/ DefaultLinkHandler.php
File
- src/
Plugin/ FieldHandlerBase.php, line 24
Namespace
Drupal\cms_content_sync\PluginView source
abstract class FieldHandlerBase extends PluginBase implements ContainerFactoryPluginInterface, FieldHandlerInterface {
/**
* A logger instance.
*
* @var \Psr\Log\LoggerInterface
*/
protected $logger;
/**
* @var string
*/
protected $entityTypeName;
/**
* @var string
*/
protected $bundleName;
/**
* @var string
*/
protected $fieldName;
/**
* @var \Drupal\Core\Field\FieldDefinitionInterface
*/
protected $fieldDefinition;
/**
* @var array
* Additional settings as provided by
* {@see FieldHandlerInterface::getHandlerSettings}
*/
protected $settings;
/**
* @var \Drupal\cms_content_sync\Entity\Flow
*/
protected $flow;
/**
* Constructs a Drupal\rest\Plugin\ResourceBase object.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* Must contain entity_type_name, bundle_name, field_name, field_definition,
* settings and sync (see above).
* @param string $plugin_id
* The plugin_id for the plugin instance
* @param mixed $plugin_definition
* The plugin implementation definition
* @param \Psr\Log\LoggerInterface $logger
* A logger instance
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, LoggerInterface $logger) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->logger = $logger;
$this->entityTypeName = $configuration['entity_type_name'];
$this->bundleName = $configuration['bundle_name'];
$this->fieldName = $configuration['field_name'];
$this->fieldDefinition = $configuration['field_definition'];
$this->settings = $configuration['settings'];
$this->flow = $configuration['sync'];
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('logger.factory')
->get('cms_content_sync'));
}
/**
* @return string
*/
public function getFieldName() {
return $this->fieldName;
}
/**
* {@inheritdoc}
*/
public function getAllowedPushOptions() {
return [
PushIntent::PUSH_DISABLED,
PushIntent::PUSH_AUTOMATICALLY,
];
}
/**
* {@inheritdoc}
*/
public function getAllowedPullOptions() {
return [
PullIntent::PULL_DISABLED,
PullIntent::PULL_AUTOMATICALLY,
];
}
/**
* {@inheritdoc}
*/
public function getHandlerSettings($current_values, $type = 'both') {
// Nothing special here.
return [];
}
/**
* {@inheritdoc}
*/
public function validateHandlerSettings(array &$form, FormStateInterface $form_state, $settings_key, $current_values) {
// No settings means no validation.
}
/**
* {@inheritdoc}
*/
public function pull(PullIntent $intent) {
$action = $intent
->getAction();
$entity = $intent
->getEntity();
// Deletion doesn't require any action on field basis for static data.
if (SyncIntent::ACTION_DELETE == $action) {
return false;
}
if ($intent
->shouldMergeChanges() && !$this
->forceMergeOverwrite()) {
return false;
}
if (PullIntent::PULL_AUTOMATICALLY != $this->settings['import']) {
return false;
}
// These fields can't be changed.
if (!$entity
->isNew()) {
if ('default_langcode' === $this->fieldName) {
return true;
}
}
$data = $intent
->getProperty($this->fieldName);
if (empty($data)) {
$entity
->set($this->fieldName, null);
}
else {
$entity
->set($this->fieldName, $data);
}
return true;
}
/**
* {@inheritdoc}
*/
public function push(PushIntent $intent) {
$action = $intent
->getAction();
$entity = $intent
->getEntity();
if (PushIntent::PUSH_AUTOMATICALLY != $this->settings['export']) {
return false;
}
// Deletion doesn't require any action on field basis for static data.
if (SyncIntent::ACTION_DELETE == $action) {
return false;
}
$intent
->setProperty($this->fieldName, $entity
->get($this->fieldName)
->getValue());
return true;
}
/**
* {@inheritDoc}
*/
public function definePropertyAtType(IDefineEntityType $type_definition) {
$type_definition
->addObjectProperty($this->fieldName, $this->fieldDefinition
->getLabel(), true, $this->fieldDefinition
->isRequired());
}
/**
* @return false
*/
protected function forceMergeOverwrite() {
return 'changed' == $this->fieldName;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
FieldHandlerBase:: |
protected | property | ||
FieldHandlerBase:: |
protected | property | ||
FieldHandlerBase:: |
protected | property | ||
FieldHandlerBase:: |
protected | property | ||
FieldHandlerBase:: |
protected | property | ||
FieldHandlerBase:: |
protected | property | A logger instance. | |
FieldHandlerBase:: |
protected | property | Additional settings as provided by { | |
FieldHandlerBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
FieldHandlerBase:: |
public | function |
Provide the Sync Core with the right property definition so this field can be stored
and synchronized. Overrides FieldHandlerInterface:: |
1 |
FieldHandlerBase:: |
protected | function | 1 | |
FieldHandlerBase:: |
public | function |
Get the allowed pull options. Overrides FieldHandlerInterface:: |
|
FieldHandlerBase:: |
public | function |
Get the allowed push options. Overrides FieldHandlerInterface:: |
|
FieldHandlerBase:: |
public | function |
Overrides FieldHandlerInterface:: |
|
FieldHandlerBase:: |
public | function |
Get the handler settings. Overrides FieldHandlerInterface:: |
3 |
FieldHandlerBase:: |
public | function |
Overrides FieldHandlerInterface:: |
8 |
FieldHandlerBase:: |
public | function |
Overrides FieldHandlerInterface:: |
8 |
FieldHandlerBase:: |
public | function |
Validate the settings defined above. $form and $form_state are the same as
in the Form API. $settings_key is the index at $form['sync_entities'] for
this handler instance. Overrides FieldHandlerInterface:: |
1 |
FieldHandlerBase:: |
public | function |
Constructs a Drupal\rest\Plugin\ResourceBase object. Overrides PluginBase:: |
|
FieldHandlerInterface:: |
public static | function | Check if this handler supports the given field instance. | 10 |
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
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:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
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. |