You are here

public static function RoleProcessor::availableProcessors in Configuration Management 7.3

Overrides AbstractProcessor::availableProcessors

1 call to RoleProcessor::availableProcessors()
RoleConfigurationHandler::registerProcessors in src/Handlers/RoleConfigurationHandler.php

File

src/Processors/RoleProcessor.php, line 9

Class

RoleProcessor

Namespace

Configuration\Processors

Code

public static function availableProcessors() {
  return array(
    // Converts the keys of an array from Role Ids to Role machine names.
    'RoleKeyId2Name',
    // Converts the values of an array from Role Ids to Role machine names.
    'RoleValueId2Name',
    // Converts the keys and the values of an array from Role Ids to Role machine names.
    'RoleAllId2Name',
  );
}