You are here

public static function VocabularyProcessor::availableProcessors in Configuration Management 7.3

Overrides AbstractProcessor::availableProcessors

1 call to VocabularyProcessor::availableProcessors()
VocabularyConfigurationHandler::registerProcessors in src/Handlers/VocabularyConfigurationHandler.php

File

src/Processors/VocabularyProcessor.php, line 9

Class

VocabularyProcessor

Namespace

Configuration\Processors

Code

public static function availableProcessors() {
  return array(
    // Converts the keys of an array from Vocabulary Ids to Vocabulary machine names.
    'VocabularyKeyId2Name',
    // Converts the values of an array from Vocabulary Ids to Vocabulary machine names.
    'VocabularyValueId2Name',
    // Converts the keys and the values of an array from Vocabulary Ids to Vocabulary machine names.
    'VocabularyAllId2Name',
  );
}