class AggregatorPluginSettingsBase
Same name and namespace in other branches
- 8.9.x core/modules/aggregator/src/Plugin/AggregatorPluginSettingsBase.php \Drupal\aggregator\Plugin\AggregatorPluginSettingsBase
Base class for aggregator plugins that implement settings forms.
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements \Drupal\Component\Plugin\PluginInspectionInterface, \Drupal\Component\Plugin\DerivativeInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait extends \Drupal\Component\Plugin\PluginBase
- class \Drupal\aggregator\Plugin\AggregatorPluginSettingsBase implements \Drupal\Core\Plugin\PluginFormInterface, \Drupal\Component\Plugin\ConfigurableInterface, \Drupal\Component\Plugin\DependentPluginInterface extends \Drupal\Core\Plugin\PluginBase
- class \Drupal\Core\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait extends \Drupal\Component\Plugin\PluginBase
Expanded class hierarchy of AggregatorPluginSettingsBase
See also
\Drupal\aggregator\Annotation\AggregatorParser
\Drupal\aggregator\Annotation\AggregatorFetcher
\Drupal\aggregator\Annotation\AggregatorProcessor
\Drupal\aggregator\Plugin\AggregatorPluginManager
\Drupal\aggregator\Plugin\FetcherInterface
\Drupal\aggregator\Plugin\ProcessorInterface
\Drupal\aggregator\Plugin\ParserInterface
2 files declare their use of AggregatorPluginSettingsBase
- DefaultProcessor.php in core/
modules/ aggregator/ src/ Plugin/ aggregator/ processor/ DefaultProcessor.php - TestProcessor.php in core/
modules/ aggregator/ tests/ modules/ aggregator_test/ src/ Plugin/ aggregator/ processor/ TestProcessor.php
File
-
core/
modules/ aggregator/ src/ Plugin/ AggregatorPluginSettingsBase.php, line 23
Namespace
Drupal\aggregator\PluginView source
abstract class AggregatorPluginSettingsBase extends PluginBase implements PluginFormInterface, ConfigurableInterface, DependentPluginInterface {
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [];
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
}
/**
* {@inheritdoc}
*/
public function calculateDependencies() {
return [];
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.