SPlus.Configuration.getFeature (featureKey, function (featureConfig){
var enabled = featureConfig['Enabled'];
var settings = featureConfig['Settings'];
var _title = settings ['Title']
//TODO: Get all settings
//TODO: Implement what to do with the configuration settings
}, function (errorResponse){
var error = errorResponse['error#displayValue']; //Getting the error
//TODO: Implement how to handle errors
});