(function() {
/**
* this backend connector is able to handle UR Harmonization content
* @augments Help4.widget.help.catalogues._Special
*/
Help4.widget.help.catalogues.UR = class extends Help4.widget.help.catalogues._Special {
static ID = 'CMP_UR';
static CATALOGUE_TYPE = 'UR';
/**
* @override
* @param {Help4.typedef.SystemConfiguration} config - the system configuration
* @returns {Help4.widget.help.catalogues.SEN.CatalogueProjects|null}
*/
static load(config) {
return config.help.useABAPHelpTexts
? super.load(config)
: null;
}
}
})();