You are here

protected static function VariableRealmUnionController::buildUnionName in Variable 7.2

Build key name from union realm key names.

1 call to VariableRealmUnionController::buildUnionName()
VariableRealmUnionController::getAllKeys in variable_realm/variable_realm_union.class.inc
Implementation of VariableRealmControllerInterface::getAllKeys().

File

variable_realm/variable_realm_union.class.inc, line 152
Classes for Realm Union.

Class

VariableRealmUnionController
Default Realm Union class

Code

protected static function buildUnionName($names) {
  return implode(', ', $names);
}