You are here

public function DateRecurInterpreterPluginBase::defaultConfiguration in Recurring Dates Field 3.0.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/DateRecurInterpreterPluginBase.php \Drupal\date_recur\Plugin\DateRecurInterpreterPluginBase::defaultConfiguration()
  2. 3.x src/Plugin/DateRecurInterpreterPluginBase.php \Drupal\date_recur\Plugin\DateRecurInterpreterPluginBase::defaultConfiguration()
  3. 3.1.x src/Plugin/DateRecurInterpreterPluginBase.php \Drupal\date_recur\Plugin\DateRecurInterpreterPluginBase::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ConfigurableInterface::defaultConfiguration

1 call to DateRecurInterpreterPluginBase::defaultConfiguration()
DateRecurInterpreterPluginBase::setConfiguration in src/Plugin/DateRecurInterpreterPluginBase.php
Sets the configuration for this plugin instance.
2 methods override DateRecurInterpreterPluginBase::defaultConfiguration()
RlInterpreter::defaultConfiguration in src/Plugin/DateRecurInterpreter/RlInterpreter.php
Gets default configuration for this plugin.
TestInterpreter::defaultConfiguration in tests/modules/date_recur_interpreter_test/src/Plugin/DateRecurInterpreter/TestInterpreter.php
Gets default configuration for this plugin.

File

src/Plugin/DateRecurInterpreterPluginBase.php, line 42

Class

DateRecurInterpreterPluginBase
Base class for date recur interpreter plugins.

Namespace

Drupal\date_recur\Plugin

Code

public function defaultConfiguration() : array {
  return [];
}