You are here

protected function RoleConfigurationHandler::registerProcessors in Configuration Management 7.3

Overrides ConfigurationHandler::registerProcessors

File

src/Handlers/RoleConfigurationHandler.php, line 16

Class

RoleConfigurationHandler

Namespace

Configuration\Handlers

Code

protected function registerProcessors() {
  foreach (\Configuration\Processors\RoleProcessor::availableProcessors() as $name) {
    $processor = new \Configuration\Processors\RoleProcessor($name, $this->configuration_manager);
    $this->configuration_manager
      ->registerProcessor($name, $processor);
  }
}