public static function VocabularyProcessor::availableProcessors in Configuration Management 7.3
Overrides AbstractProcessor::availableProcessors
1 call to VocabularyProcessor::availableProcessors()
File
- src/
Processors/ VocabularyProcessor.php, line 9
Class
Namespace
Configuration\ProcessorsCode
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',
);
}