ResourceFieldEnhancerBase.php in JSON:API Extras 8
Same filename and directory in other branches
Namespace
Drupal\jsonapi_extras\PluginFile
src/Plugin/ResourceFieldEnhancerBase.phpView source
<?php
namespace Drupal\jsonapi_extras\Plugin;
use Drupal\Core\Plugin\PluginBase;
/**
* Common base class for resourceFieldEnhancer plugins.
*
* @see \Drupal\jsonapi_extras\Annotation\ResourceFieldEnhancer
* @see \Drupal\jsonapi_extras\Plugin\ResourceFieldEnhancerManager
* @see \Drupal\jsonapi_extras\Plugin\ResourceFieldEnhancerInterface
* @see plugin_api
*
* @ingroup third_party
*/
abstract class ResourceFieldEnhancerBase extends PluginBase implements ResourceFieldEnhancerInterface {
/**
* Holds the plugin configuration.
*
* @var array
*/
protected $configuration;
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [];
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
// TODO: This should have a dependency on the resource_config entity.
return [];
}
/**
* {@inheritdoc}
*/
public function getConfiguration() {
return $this->configuration ? $this->configuration : $this
->setConfiguration([]);
}
/**
* {@inheritdoc}
*/
public function setConfiguration(array $configuration) {
$this->configuration = $configuration + $this
->defaultConfiguration();
return $this->configuration;
}
/**
* {@inheritdoc}
*/
public function getSettingsForm(array $resource_field_info) {
return [];
}
}
Classes
Name | Description |
---|---|
ResourceFieldEnhancerBase | Common base class for resourceFieldEnhancer plugins. |