import {Component} from '@angular/core'; import {PluginGatewayInformation} from "./plugin-gateway-information.component"; import {OpenaireEntities} from "../../../../utils/properties/searchFields"; import {PluginBaseFormComponent} from "../../utils/base-plugin.form.component"; @Component({ selector: 'plugin-gateway-information-form', template: `
Show or hide the following information:
Community info
Title
Short title
Description
Curated by
Created
{{openaireEntities.PROJECTS}}
Linked Zenodo communities
{{openaireEntities.DATASOURCES}}
Subjects
Manage community info here.
Pages & menus
Search bar
Browse by FOS
Browse by SDGs
{{openaireEntities.PUBLICATIONS}}
{{openaireEntities.DATASETS}}
{{openaireEntities.SOFTWARE}}
{{openaireEntities.OTHER}}
If some information is enabled here, but still not visible, please check related entity or page.
Change the custom section background options here.
`, }) export class PluginGatewayInformationFormComponent extends PluginBaseFormComponent { openaireEntities= OpenaireEntities; constructor() { super() } }