class UrlLinkEnhancer in JSON:API Extras 8.3
Add URL aliases to links.
Plugin annotation
@ResourceFieldEnhancer(
id = "url_link",
label = @Translation("URL for link (link field only)"),
description = @Translation("Use Url for link fields.")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\jsonapi_extras\Plugin\ResourceFieldEnhancerBase implements ResourceFieldEnhancerInterface uses \Shaper\DataAdaptor\DataAdaptorValidatorTrait, \Shaper\DataAdaptor\DataAdaptorTransformerTrait
- class \Drupal\jsonapi_extras\Plugin\jsonapi\FieldEnhancer\UrlLinkEnhancer implements ContainerFactoryPluginInterface
- class \Drupal\jsonapi_extras\Plugin\ResourceFieldEnhancerBase implements ResourceFieldEnhancerInterface uses \Shaper\DataAdaptor\DataAdaptorValidatorTrait, \Shaper\DataAdaptor\DataAdaptorTransformerTrait
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of UrlLinkEnhancer
File
- src/
Plugin/ jsonapi/ FieldEnhancer/ UrlLinkEnhancer.php, line 22
Namespace
Drupal\jsonapi_extras\Plugin\jsonapi\FieldEnhancerView source
class UrlLinkEnhancer extends ResourceFieldEnhancerBase implements ContainerFactoryPluginInterface {
/**
* The language manager.
*
* @var \Drupal\Core\Language\LanguageManagerInterface
*/
protected $languageManager;
/**
* The logger service.
*
* @var \Drupal\Core\Logger\LoggerChannelInterface
*/
protected $logger;
/**
* Constructs UrlLinkEnhancer.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param array $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
* The language manager.
* @param \Drupal\Core\Logger\LoggerChannelFactoryInterface $logger_factory
* The logger service.
*/
public function __construct(array $configuration, $plugin_id, array $plugin_definition, LanguageManagerInterface $language_manager, LoggerChannelFactoryInterface $logger_factory) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->languageManager = $language_manager;
$this->logger = $logger_factory
->get('jsonapi_extras');
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('language_manager'), $container
->get('logger.factory'));
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'absolute_url' => 0,
];
}
/**
* {@inheritDoc}
*/
public function getSettingsForm(array $resource_field_info) {
$settings = empty($resource_field_info['enhancer']['settings']) ? $this
->getConfiguration() : $resource_field_info['enhancer']['settings'];
$form = parent::getSettingsForm($resource_field_info);
$form['absolute_url'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Get Absolute Urls'),
'#default_value' => $settings['absolute_url'],
];
return $form;
}
/**
* {@inheritdoc}
*/
protected function doUndoTransform($data, Context $context) {
if (isset($data['uri'])) {
try {
$url = Url::fromUri($data['uri'], [
'language' => $this->languageManager
->getCurrentLanguage(),
]);
// Use absolute urls if configured.
$configuration = $this
->getConfiguration();
if ($configuration['absolute_url']) {
$url
->setAbsolute(TRUE);
}
$data['url'] = $url
->toString();
} catch (\Exception $e) {
$this->logger
->error('Failed to create a URL from uri @uri. Error: @error', [
'@uri' => $data['uri'],
'@error' => $e
->getMessage(),
]);
}
}
return $data;
}
/**
* {@inheritdoc}
*/
protected function doTransform($value, Context $context) {
}
/**
* {@inheritdoc}
*/
public function getOutputJsonSchema() {
return [
'type' => 'object',
'properties' => [
'uri' => [
'type' => 'string',
],
'title' => [
'type' => 'string',
],
'options' => [
'type' => 'array',
],
'url' => [
'type' => 'string',
],
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
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:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
ResourceFieldEnhancerBase:: |
protected | property |
Holds the plugin configuration. Overrides PluginBase:: |
|
ResourceFieldEnhancerBase:: |
public | function | ||
ResourceFieldEnhancerBase:: |
public | function | ||
ResourceFieldEnhancerBase:: |
public | function | ||
ResourceFieldEnhancerBase:: |
public | function | ||
ResourceFieldEnhancerBase:: |
public | function | ||
ResourceFieldEnhancerBase:: |
public | function | ||
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
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. | |
UrlLinkEnhancer:: |
protected | property | The language manager. | |
UrlLinkEnhancer:: |
protected | property | The logger service. | |
UrlLinkEnhancer:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
UrlLinkEnhancer:: |
public | function |
Overrides ResourceFieldEnhancerBase:: |
|
UrlLinkEnhancer:: |
protected | function | ||
UrlLinkEnhancer:: |
protected | function | ||
UrlLinkEnhancer:: |
public | function |
Get the JSON Schema for the new output. Overrides ResourceFieldEnhancerInterface:: |
|
UrlLinkEnhancer:: |
public | function |
Get a form element to render the settings. Overrides ResourceFieldEnhancerBase:: |
|
UrlLinkEnhancer:: |
public | function |
Constructs UrlLinkEnhancer. Overrides PluginBase:: |