You are here

public function DateRecurInterpreter::getPluginCollections in Recurring Dates Field 3.1.x

Same name and namespace in other branches
  1. 8.2 src/Entity/DateRecurInterpreter.php \Drupal\date_recur\Entity\DateRecurInterpreter::getPluginCollections()
  2. 3.x src/Entity/DateRecurInterpreter.php \Drupal\date_recur\Entity\DateRecurInterpreter::getPluginCollections()
  3. 3.0.x src/Entity/DateRecurInterpreter.php \Drupal\date_recur\Entity\DateRecurInterpreter::getPluginCollections()

Gets the plugin collections used by this object.

Return value

\Drupal\Component\Plugin\LazyPluginCollection[] An array of plugin collections, keyed by the property name they use to store their configuration.

Overrides ObjectWithPluginCollectionInterface::getPluginCollections

File

src/Entity/DateRecurInterpreter.php, line 105

Class

DateRecurInterpreter
Defines an instance of Recurring Date interpreter.

Namespace

Drupal\date_recur\Entity

Code

public function getPluginCollections() : array {
  return [
    'settings' => $this
      ->getPluginCollection(),
  ];
}