public function PluginBag::rewind

Implements \Iterator::rewind().

1 call to PluginBag::rewind()
FilterBag::export in drupal/core/modules/filter/lib/Drupal/filter/FilterBag.php
Returns the current configuration of all filters in this bag.

File

drupal/core/lib/Drupal/Component/Plugin/PluginBag.php, line 159
Contains \Drupal\Component\Plugin\PluginBag.

Class

PluginBag
Defines an object which stores multiple plugin instances to lazy load them.

Namespace

Drupal\Component\Plugin

Code

public function rewind() {
  reset($this->instanceIDs);
}