function variable_realm_keys in Variable 7.2
Same name and namespace in other branches
- 7 variable_realm/variable_realm.module \variable_realm_keys()
Get keys for realm.
2 calls to variable_realm_keys()
- variable_realm_features_selection in variable_realm/
variable_realm.features.inc - Processes export data selections consistently.
- variable_realm_params in variable_realm/
variable_realm.module - Get realm parameters from query string.
File
- variable_realm/
variable_realm.module, line 158 - Variable API module - Realms
Code
function variable_realm_keys($realm_name) {
if ($controller = variable_realm_controller($realm_name)) {
return $controller
->getAllKeys();
}
}